* printcmd.c (printf_command): Pass dummy argument to
authorTom Tromey <tromey@redhat.com>
Thu, 4 Mar 2010 18:21:40 +0000 (18:21 +0000)
committerTom Tromey <tromey@redhat.com>
Thu, 4 Mar 2010 18:21:40 +0000 (18:21 +0000)
printf_filtered.

gdb/ChangeLog
gdb/printcmd.c

index b0861d04f3ec21e4af974db02290549c4a433950..f7321c1583b3ea114ccf2581cab10471bab6cd8a 100644 (file)
@@ -1,3 +1,8 @@
+2010-03-04  Tom Tromey  <tromey@redhat.com>
+
+       * printcmd.c (printf_command): Pass dummy argument to
+       printf_filtered.
+
 2010-03-04  Doug Evans  <dje@google.com>
 
        * arm-tdep.c (arm_stub_unwind_sniffer): Add comment.
index 5e5ef8e1be2afcc9b0b681e6a4052eea1fc486c1..346c2e270088ad44941870f832e91d5e8db2d025 100644 (file)
@@ -2645,8 +2645,10 @@ printf_command (char *arg, int from_tty)
     /* Print the portion of the format string after the last argument.
        Note that this will not include any ordinary %-specs, but it
        might include "%%".  That is why we use printf_filtered and not
-       puts_filtered here.  */
-    printf_filtered (last_arg);
+       puts_filtered here.  Also, we pass a dummy argument because
+       some platforms have modified GCC to include -Wformat-security
+       by default, which will warn here if there is no argument.  */
+    printf_filtered (last_arg, 0);
   }
   do_cleanups (old_cleanups);
 }
This page took 0.028236 seconds and 4 git commands to generate.