summaryrefslogtreecommitdiff
path: root/debug.c
diff options
context:
space:
mode:
authorPino Toscano <toscano.pino@tiscali.it>2013-08-30 16:46:12 +0200
committerPino Toscano <toscano.pino@tiscali.it>2013-08-30 16:46:12 +0200
commitff67ef2f6aadd65978bc4f03f5fd522c91a07684 (patch)
tree5f896acbd5bb0bb8cc9ea49f7a60e1cda5cd30cc /debug.c
parent7a05d6fac03cd1d96ef219ad64cb2a61c8300c47 (diff)
Add missing format string for error
A call to `error' lacked a format string, leading to build failure when compiling with stricter CFLAGS. * debug.c (debug_set_file): Add format string in invocation of error.
Diffstat (limited to 'debug.c')
-rw-r--r--debug.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/debug.c b/debug.c
index 2f61fbc63..6b62432ef 100644
--- a/debug.c
+++ b/debug.c
@@ -43,7 +43,7 @@ debug_set_file (const char *name)
{
debug_file = fopen (name, "w+");
if (!debug_file)
- error (0, errno, name);
+ error (0, errno, "%s", name);
}
}