diff options
author | Andrew Cagney <cagney@redhat.com> | 2001-06-28 03:40:27 +0000 |
---|---|---|
committer | Andrew Cagney <cagney@redhat.com> | 2001-06-28 03:40:27 +0000 |
commit | 29372230ea12d17b224d92cb0aebd3e77ec2f6fd (patch) | |
tree | cb23fadffc5a73eccde7f8734c1e2785b652331e /gdb/remote-sds.c | |
parent | a196c81c19ca89cbd11439a7174546c4b7849671 (diff) | |
download | gdb-29372230ea12d17b224d92cb0aebd3e77ec2f6fd.zip gdb-29372230ea12d17b224d92cb0aebd3e77ec2f6fd.tar.gz gdb-29372230ea12d17b224d92cb0aebd3e77ec2f6fd.tar.bz2 |
* remote-sds.c (sds_start_remote): Change type of ``c'' to int
from possibly unsigned char.
Diffstat (limited to 'gdb/remote-sds.c')
-rw-r--r-- | gdb/remote-sds.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/gdb/remote-sds.c b/gdb/remote-sds.c index 27bc241..7d2f547 100644 --- a/gdb/remote-sds.c +++ b/gdb/remote-sds.c @@ -160,7 +160,7 @@ sds_close (int quitting) static int sds_start_remote (PTR dummy) { - char c; + int c; unsigned char buf[200]; immediate_quit++; /* Allow user to interrupt it */ |