From: Yao Qi Date: Thu, 12 Apr 2012 00:56:05 +0000 (+0000) Subject: gdb/ X-Git-Url: https://git.libre-soc.org/?a=commitdiff_plain;h=248fd3bfb3178cfc0495c8a160d54a14b6cb51c2;p=binutils-gdb.git gdb/ * remote.c (async_remote_interrupt): Correct function name in debug message. (async_remote_interrupt_twice): Ditto. --- diff --git a/gdb/ChangeLog b/gdb/ChangeLog index c511d0649e0..12969e86816 100644 --- a/gdb/ChangeLog +++ b/gdb/ChangeLog @@ -1,3 +1,9 @@ +2012-04-12 Yao Qi + + * remote.c (async_remote_interrupt): Correct function name in + debug message. + (async_remote_interrupt_twice): Ditto. + 2012-04-11 Yuanhui Zhang * source.c (find_and_open_source): Consistently pass resulting 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 (); }