diff options
author | Jason Molenda <jsm@bugshack.cygnus.com> | 1999-08-23 22:40:00 +0000 |
---|---|---|
committer | Jason Molenda <jsm@bugshack.cygnus.com> | 1999-08-23 22:40:00 +0000 |
commit | 44df2a89932b19fd7f0abbb64f92a5991dcf0e64 (patch) | |
tree | 85f4757e0472112140b124b30bd0ea4470ae3da2 /gdb/m68k-stub.c | |
parent | dabbe5792c0dfb781339ad7d8f8b1c8c25cb8ec3 (diff) | |
download | gdb-44df2a89932b19fd7f0abbb64f92a5991dcf0e64.tar.gz |
import gdb-1999-08-23 snapshot
Diffstat (limited to 'gdb/m68k-stub.c')
-rw-r--r-- | gdb/m68k-stub.c | 5 |
1 files changed, 2 insertions, 3 deletions
diff --git a/gdb/m68k-stub.c b/gdb/m68k-stub.c index c2f1d3f89d6..a7187eb08a8 100644 --- a/gdb/m68k-stub.c +++ b/gdb/m68k-stub.c @@ -576,8 +576,7 @@ char * buffer; } -/* send the packet in buffer. The host get's one chance to read it. - This routine does not wait for a positive acknowledge. */ +/* send the packet in buffer. */ void putpacket(buffer) @@ -603,7 +602,7 @@ char * buffer; putDebugChar(hexchars[checksum >> 4]); putDebugChar(hexchars[checksum % 16]); - } while (1 == 0); /* (getDebugChar() != '+'); */ + } while (getDebugChar() != '+'); } |