summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--gdb/ChangeLog5
-rw-r--r--gdb/remote-sds.c2
2 files changed, 6 insertions, 1 deletions
diff --git a/gdb/ChangeLog b/gdb/ChangeLog
index d8c68c150eb..7ec2d94f97a 100644
--- a/gdb/ChangeLog
+++ b/gdb/ChangeLog
@@ -1,5 +1,10 @@
2001-06-27 Andrew Cagney <ac131313@redhat.com>
+ * remote-sds.c (sds_start_remote): Change type of ``c'' to int
+ from possibly unsigned char.
+
+2001-06-27 Andrew Cagney <ac131313@redhat.com>
+
* ser-ocd.c: Delete file.
* Makefile.in (ALLDEPFILES): Remove ser-ocd.c
(ser-ocd.o): Delete target.
diff --git a/gdb/remote-sds.c b/gdb/remote-sds.c
index 27bc2416aea..7d2f5477ec3 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 */