* printcmd.c (printf_command): Pass dummy argument to

printf_filtered.
This commit is contained in:
Tom Tromey 2010-03-04 18:21:40 +00:00
parent f7dd8c7963
commit 1b93ff13d3
2 changed files with 9 additions and 2 deletions

View 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.

View 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);
}