From c639303acf527e775c0ac671f041de635e5d4a2b Mon Sep 17 00:00:00 2001 From: "John \"Elwin\" Edwards" Date: Fri, 26 Jun 2015 11:32:37 -0400 Subject: [PATCH] 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. --- arogue7/save.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/arogue7/save.c b/arogue7/save.c index 66ac92d..ba2c3c0 100644 --- a/arogue7/save.c +++ b/arogue7/save.c @@ -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