linux-waitpid: Get rid of format string warning
authorSimon Marchi <simon.marchi@ericsson.com>
Thu, 21 Sep 2017 13:19:40 +0000 (15:19 +0200)
committerSimon Marchi <simon.marchi@ericsson.com>
Thu, 21 Sep 2017 13:19:40 +0000 (15:19 +0200)
Clang gives this warning:

/home/emaisin/src/binutils-gdb/gdb/gdbserver/../nat/linux-waitpid.c:45:25: error: format string is not a string literal [-Werror,-Wformat-nonliteral]
      vfprintf (stderr, format, args);
                        ^~~~~~

Get rid of it by adding ATTRIBUTE_PRINTF.

gdb/ChangeLog:

* nat/linux-waitpid.c (linux_debug): Add ATTRIBUTE_PRINTF.

gdb/ChangeLog
gdb/nat/linux-waitpid.c

index 88e7a6e..5803abf 100644 (file)
@@ -1,5 +1,9 @@
 2017-09-21  Simon Marchi  <simon.marchi@ericsson.com>
 
+       * nat/linux-waitpid.c (linux_debug): Add ATTRIBUTE_PRINTF.
+
+2017-09-21  Simon Marchi  <simon.marchi@ericsson.com>
+
        * microblaze-tdep.c (microblaze_debug): Add ATTRIBUTE_PRINTF.
 
 2017-09-21  Yao Qi  <yao.qi@linaro.org>
index bf5e725..05d1e26 100644 (file)
@@ -34,7 +34,7 @@
 /* Print debugging output based on the format string FORMAT and
    its parameters.  */
 
-static inline void
+static inline void ATTRIBUTE_PRINTF (1,2)
 linux_debug (const char *format, ...)
 {
 #ifdef GDBSERVER