summaryrefslogtreecommitdiff
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
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.
-rw-r--r--ChangeLog5
-rw-r--r--debug.c2
2 files changed, 6 insertions, 1 deletions
diff --git a/ChangeLog b/ChangeLog
index cb70761c4..ad5aba26d 100644
--- a/ChangeLog
+++ b/ChangeLog
@@ -1,3 +1,8 @@
+2013-08-30 Pino Toscano <toscano.pino@tiscali.it>
+
+ * debug.c (debug_set_file): Add format string in invocation of
+ error.
+
2013-07-08 Samuel Thibault <samuel.thibault@ens-lyon.org>
* tarfs.c (tarfs_parse_opts): Rename sate parameter into state.
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);
}
}