diff options
author | Andrew Cagney <cagney@redhat.com> | 2002-03-23 17:38:13 +0000 |
---|---|---|
committer | Andrew Cagney <cagney@redhat.com> | 2002-03-23 17:38:13 +0000 |
commit | 823ca731ed62b553ee30c61c93e8e97a86eee562 (patch) | |
tree | 577edb638d62fb735e4672ebb8401c6ee279371a /gdb/stack.c | |
parent | 294b41b344851e9bd963817c555a4e5ace97863d (diff) | |
download | gdb-823ca731ed62b553ee30c61c93e8e97a86eee562.zip gdb-823ca731ed62b553ee30c61c93e8e97a86eee562.tar.gz gdb-823ca731ed62b553ee30c61c93e8e97a86eee562.tar.bz2 |
* defs.h (error): Add printf format attribute.
* thread-db.c (thread_from_lwp): Fix error format string.
* stack.c (parse_frame_specification): Ditto.
* cli/cli-decode.c (undef_cmd_error): Ditto.
* scm-lang.c (scm_lookup_name): Ditto.
* tracepoint.c (trace_error): Ditto.
* remote-utils.c (usage): Ditto.
* remote.c (compare_sections_command): Ditto.
Fix PR gdb/328.
Diffstat (limited to 'gdb/stack.c')
-rw-r--r-- | gdb/stack.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/gdb/stack.c b/gdb/stack.c index 68f16b6..2fe6e42 100644 --- a/gdb/stack.c +++ b/gdb/stack.c @@ -704,7 +704,7 @@ parse_frame_specification (char *frame_exp) really should be used instead of spaces to delimit; using spaces normally works in an expression). */ #ifdef SETUP_ARBITRARY_FRAME - error ("No frame %d", args[0]); + error ("No frame %s", paddr_d (args[0])); #endif /* If (s)he specifies the frame with an address, he deserves what |