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:
parent
3c792f4898
commit
c639303acf
1 changed files with 1 additions and 1 deletions
|
|
@ -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
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue