From 29372230ea12d17b224d92cb0aebd3e77ec2f6fd Mon Sep 17 00:00:00 2001 From: Andrew Cagney Date: Thu, 28 Jun 2001 03:40:27 +0000 Subject: [PATCH] * remote-sds.c (sds_start_remote): Change type of ``c'' to int from possibly unsigned char. --- gdb/ChangeLog | 5 +++++ gdb/remote-sds.c | 2 +- 2 files changed, 6 insertions(+), 1 deletion(-) diff --git a/gdb/ChangeLog b/gdb/ChangeLog index d8c68c150e..7ec2d94f97 100644 --- a/gdb/ChangeLog +++ b/gdb/ChangeLog @@ -1,3 +1,8 @@ +2001-06-27 Andrew Cagney + + * remote-sds.c (sds_start_remote): Change type of ``c'' to int + from possibly unsigned char. + 2001-06-27 Andrew Cagney * ser-ocd.c: Delete file. diff --git a/gdb/remote-sds.c b/gdb/remote-sds.c index 27bc2416ae..7d2f5477ec 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 */ -- 2.34.1