diff options
Diffstat (limited to 'gdb/gdbserver/remote-utils.c')
-rw-r--r-- | gdb/gdbserver/remote-utils.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/gdb/gdbserver/remote-utils.c b/gdb/gdbserver/remote-utils.c index 667ac2d..593c7af 100644 --- a/gdb/gdbserver/remote-utils.c +++ b/gdb/gdbserver/remote-utils.c @@ -722,7 +722,7 @@ readchar (void) bufp = buf; bufcnt--; - return *bufp++ & 0x7f; + return *bufp++; } /* Read a packet from the remote machine, with error checking, |