summaryrefslogtreecommitdiff
path: root/gdb/remote.c
diff options
context:
space:
mode:
authorqiyao <qiyao>2012-04-12 00:56:03 +0000
committerqiyao <qiyao>2012-04-12 00:56:03 +0000
commit62167df338cd1b9dbc4920694bc23b004aeacc32 (patch)
treeccdef7d4462354a47500f9c8754c35e3ab2eefc6 /gdb/remote.c
parent74362f856f9048a0db743a4e1bc04ba5e10771b5 (diff)
downloadgdb-62167df338cd1b9dbc4920694bc23b004aeacc32.tar.gz
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.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/gdb/remote.c b/gdb/remote.c
index caf6116837f..68864d17e90 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 ();
}