arogue7: comment out a problematic message.

This line causes a segfault on x64.  I suspect one of the char*
arguments to msg() is being corrupted.  But gdb doesn't make it easy
to debug variadic functions, and the crash doesn't occur when running
under valgrind.  So the message is being removed until I can discover
the root of the problem.
This commit is contained in:
John "Elwin" Edwards 2015-06-26 11:32:37 -04:00
parent 3c792f4898
commit c639303acf

View file

@ -239,7 +239,7 @@ char **envp;
if (lines > 24) lines = 24;
mpos = 0;
msg("%s: %s", file, ctime(&sbuf2.st_mtime));
/*msg("%s: %s", file, ctime(&sbuf2.st_mtime));*/
/*
* defeat multiple restarting from the same place