From 1b93ff13d3021712cf8629be000570ae5791414b Mon Sep 17 00:00:00 2001 From: Tom Tromey Date: Thu, 4 Mar 2010 18:21:40 +0000 Subject: * printcmd.c (printf_command): Pass dummy argument to printf_filtered. --- gdb/printcmd.c | 6 ++++-- 1 file changed, 4 insertions(+), 2 deletions(-) (limited to 'gdb/printcmd.c') diff --git a/gdb/printcmd.c b/gdb/printcmd.c index 5e5ef8e..346c2e2 100644 --- a/gdb/printcmd.c +++ b/gdb/printcmd.c @@ -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); } -- cgit v1.1