diff options
author | Jason Molenda <jmolenda@apple.com> | 1999-08-23 22:40:00 +0000 |
---|---|---|
committer | Jason Molenda <jmolenda@apple.com> | 1999-08-23 22:40:00 +0000 |
commit | 53a5351d907ef4eacd463a48a86d35b2b70b9f60 (patch) | |
tree | 22c35199ec70962e33c63d2111f333bfdcce02e1 /gdb/m68k-stub.c | |
parent | 093505ad6138b9e165876765ecd667c90fc921ae (diff) | |
download | gdb-53a5351d907ef4eacd463a48a86d35b2b70b9f60.zip gdb-53a5351d907ef4eacd463a48a86d35b2b70b9f60.tar.gz gdb-53a5351d907ef4eacd463a48a86d35b2b70b9f60.tar.bz2 |
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 c2f1d3f..a7187eb 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() != '+'); } |