diff options
author | Mark Kettenis <kettenis@gnu.org> | 2003-12-14 13:40:19 +0000 |
---|---|---|
committer | Mark Kettenis <kettenis@gnu.org> | 2003-12-14 13:40:19 +0000 |
commit | e11148b43a5ba127099167368b38e70880cdd287 (patch) | |
tree | e9f0931369c58095034352a94e29d24dc0d3b119 /gdb/proc-api.c | |
parent | 1317892077be684237ca854625d49f8e56f56f4b (diff) | |
download | gdb-e11148b43a5ba127099167368b38e70880cdd287.tar.gz |
* proc-api.c (procfs_note): Add format string to fprintf call.
Diffstat (limited to 'gdb/proc-api.c')
-rw-r--r-- | gdb/proc-api.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/gdb/proc-api.c b/gdb/proc-api.c index 208b984a74b..1e4a2dccf17 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); } |