diff options
author | Yao Qi <yao@codesourcery.com> | 2012-04-12 00:56:05 +0000 |
---|---|---|
committer | Yao Qi <yao@codesourcery.com> | 2012-04-12 00:56:05 +0000 |
commit | 248fd3bfb3178cfc0495c8a160d54a14b6cb51c2 (patch) | |
tree | ff86365bc9e5ce74a93279e77ba5db10173e820e /gdb/remote.c | |
parent | 533eaa5e3f1b445bb7359636932d257e077b7fb9 (diff) | |
download | gdb-248fd3bfb3178cfc0495c8a160d54a14b6cb51c2.zip gdb-248fd3bfb3178cfc0495c8a160d54a14b6cb51c2.tar.gz gdb-248fd3bfb3178cfc0495c8a160d54a14b6cb51c2.tar.bz2 |
gdb/
* remote.c (async_remote_interrupt): Correct function name in
debug message.
(async_remote_interrupt_twice): Ditto.
Diffstat (limited to 'gdb/remote.c')
-rw-r--r-- | gdb/remote.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/gdb/remote.c b/gdb/remote.c index caf6116..68864d1 100644 --- a/gdb/remote.c +++ b/gdb/remote.c @@ -4834,7 +4834,7 @@ static void async_remote_interrupt (gdb_client_data arg) { if (remote_debug) - fprintf_unfiltered (gdb_stdlog, "remote_interrupt called\n"); + fprintf_unfiltered (gdb_stdlog, "async_remote_interrupt called\n"); target_stop (inferior_ptid); } @@ -4845,7 +4845,7 @@ void async_remote_interrupt_twice (gdb_client_data arg) { if (remote_debug) - fprintf_unfiltered (gdb_stdlog, "remote_interrupt_twice called\n"); + fprintf_unfiltered (gdb_stdlog, "async_remote_interrupt_twice called\n"); interrupt_query (); } |