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 | 7193a8458a0b0d4ba2034c4925e807d0254e2e38 (patch) | |
tree | 086aec1b0e50fd5479c0983b8a3ae42faf6df850 /gdb/stack.c | |
parent | 93144de68489a99918afdb395606d0a033662fbd (diff) | |
download | gdb-7193a8458a0b0d4ba2034c4925e807d0254e2e38.tar.gz |
* 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 68f16b653c3..2fe6e420b0b 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 |