diff options
author | Fred Fish <fnf@specifix.com> | 2003-02-06 17:58:01 +0000 |
---|---|---|
committer | Fred Fish <fnf@specifix.com> | 2003-02-06 17:58:01 +0000 |
commit | b871e4ecc4cbe22c0babe87fbe8d2e1c3e8882f3 (patch) | |
tree | f1b1730763fe8bff727fca1a15281eb99a43ea80 /gdb/remote-e7000.c | |
parent | cad91d28c98145241551dfde9718f7c72512aeb6 (diff) | |
download | gdb-b871e4ecc4cbe22c0babe87fbe8d2e1c3e8882f3.zip gdb-b871e4ecc4cbe22c0babe87fbe8d2e1c3e8882f3.tar.gz gdb-b871e4ecc4cbe22c0babe87fbe8d2e1c3e8882f3.tar.bz2 |
Checked in as obvious fixes. Also updated FSF copyright year to 2003
for remote-e7000.c and infttrace.c.
2003-02-05 Fred Fish <fnf@intrinsity.com>
* remote-e7000.c (e7000_drain_command): Fix precedence problem with
'=' and '!='.
* rdi-share/ardi.c (wait_for_debug_message): Fix precedence problem
with '&' and '=='.
(angel_RDI_info): Ditto.
* infttrace.c (threads_continue_all_but_one): Fix precedence problem
with '&' and '!='.
(threads_continue_all_with_signals): Ditto.
Diffstat (limited to 'gdb/remote-e7000.c')
-rw-r--r-- | gdb/remote-e7000.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/gdb/remote-e7000.c b/gdb/remote-e7000.c index efacde3..49c7fb9 100644 --- a/gdb/remote-e7000.c +++ b/gdb/remote-e7000.c @@ -1,7 +1,7 @@ /* Remote debugging interface for Hitachi E7000 ICE, for GDB Copyright 1993, 1994, 1995, 1996, 1997, 1998, 1999, 2000, 2001, - 2002 Free Software Foundation, Inc. + 2002, 2003 Free Software Foundation, Inc. Contributed by Cygnus Support. @@ -1812,7 +1812,7 @@ e7000_drain_command (char *args, int fromtty) puts_e7000debug ("end\r"); putchar_e7000 (CTRLC); - while ((c = readchar (1) != -1)) + while ((c = readchar (1)) != -1) { if (quit_flag) { |