aboutsummaryrefslogtreecommitdiff
path: root/gdb/remote-nindy.c
diff options
context:
space:
mode:
Diffstat (limited to 'gdb/remote-nindy.c')
-rw-r--r--gdb/remote-nindy.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/gdb/remote-nindy.c b/gdb/remote-nindy.c
index 7876d5b..0fcaf2f 100644
--- a/gdb/remote-nindy.c
+++ b/gdb/remote-nindy.c
@@ -359,14 +359,14 @@ nindy_wait( pid, status )
while (1)
{
/* Input on remote */
- c = SERIAL_READCHAR (nindy_serial, 0);
+ c = SERIAL_READCHAR (nindy_serial, -1);
if (c == SERIAL_ERROR)
{
error ("Cannot read from serial line");
}
else if (c == 0x1b) /* ESC */
{
- c = SERIAL_READCHAR (nindy_serial, 0);
+ c = SERIAL_READCHAR (nindy_serial, 1);
c &= ~0x40;
}
else if (c != 0x10) /* DLE */