# HG changeset patch # User John "Elwin" Edwards # Date 1435332757 14400 # Node ID 2d94c32a709e1718dd129095d20f08a67cf240f0 # Parent 49af2fd0bb0ceea4fbb368bf538ead72cd43905f 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. diff -r 49af2fd0bb0c -r 2d94c32a709e arogue7/save.c --- a/arogue7/save.c Tue Jun 16 11:44:49 2015 -0400 +++ b/arogue7/save.c Fri Jun 26 11:32:37 2015 -0400 @@ -239,7 +239,7 @@ 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