From 2ab4a9c26f91797b27d17bdd81ea7edc00554d07 Mon Sep 17 00:00:00 2001 From: kettenis Date: Sun, 14 Dec 2003 13:40:19 +0000 Subject: [PATCH] * proc-api.c (procfs_note): Add format string to fprintf call. --- gdb/ChangeLog | 2 ++ gdb/proc-api.c | 2 +- 2 files changed, 3 insertions(+), 1 deletion(-) diff --git a/gdb/ChangeLog b/gdb/ChangeLog index c164aa1e0c..e5bd30828d 100644 --- a/gdb/ChangeLog +++ b/gdb/ChangeLog @@ -1,5 +1,7 @@ 2003-12-14 Mark Kettenis + * proc-api.c (procfs_note): Add format string to fprintf call. + * i386-tdep.c (i386_analyze_frame_setup): Add missing encodings for `subl' and `xorl' instructions. diff --git a/gdb/proc-api.c b/gdb/proc-api.c index 208b984a74..1e4a2dccf1 100644 --- a/gdb/proc-api.c +++ b/gdb/proc-api.c @@ -747,7 +747,7 @@ procfs_note (char *msg, char *file, int line) if (info_verbose) fprintf (procfs_file ? procfs_file : stdout, "%s:%d -- ", file, line); - fprintf (procfs_file ? procfs_file : stdout, msg); + fprintf (procfs_file ? procfs_file : stdout, "%s", msg); if (procfs_file) fflush (procfs_file); } -- 2.11.0