aboutsummaryrefslogtreecommitdiff
path: root/gdb
diff options
context:
space:
mode:
authorTom Tromey <tromey@redhat.com>2010-03-04 18:21:40 +0000
committerTom Tromey <tromey@redhat.com>2010-03-04 18:21:40 +0000
commit1b93ff13d3021712cf8629be000570ae5791414b (patch)
tree24afc7e81889b23e184a13dd4df62380645fd702 /gdb
parentf7dd8c79635c8e576cf5138a9ea5b068732cf044 (diff)
downloadgdb-1b93ff13d3021712cf8629be000570ae5791414b.zip
gdb-1b93ff13d3021712cf8629be000570ae5791414b.tar.gz
gdb-1b93ff13d3021712cf8629be000570ae5791414b.tar.bz2
* printcmd.c (printf_command): Pass dummy argument to
printf_filtered.
Diffstat (limited to 'gdb')
-rw-r--r--gdb/ChangeLog5
-rw-r--r--gdb/printcmd.c6
2 files changed, 9 insertions, 2 deletions
diff --git a/gdb/ChangeLog b/gdb/ChangeLog
index b0861d0..f7321c1 100644
--- a/gdb/ChangeLog
+++ b/gdb/ChangeLog
@@ -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.
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);
}