aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorSaid Ziouani <saidz@cygnus>1998-06-17 21:21:55 +0000
committerSaid Ziouani <saidz@cygnus>1998-06-17 21:21:55 +0000
commit959941e717445bf4c42425862acf15e3d10b4fed (patch)
tree3364228eb14f52e58470d13674f1bebd0710800c
parent31493cdfd6b1700bfbaa5eb57384ed9cf25cc9f4 (diff)
downloadgdb-959941e717445bf4c42425862acf15e3d10b4fed.zip
gdb-959941e717445bf4c42425862acf15e3d10b4fed.tar.gz
gdb-959941e717445bf4c42425862acf15e3d10b4fed.tar.bz2
* remote-sds.c (sds_start_remote): Fix printf call.
-rw-r--r--gdb/ChangeLog4
-rw-r--r--gdb/remote-sds.c2
2 files changed, 5 insertions, 1 deletions
diff --git a/gdb/ChangeLog b/gdb/ChangeLog
index 8e44e79..6ee7386 100644
--- a/gdb/ChangeLog
+++ b/gdb/ChangeLog
@@ -1,3 +1,7 @@
+Wed Jun 17 17:13:38 1998 Said Ziouani (saidz@park-street.cygnus.com)
+
+ * remote-sds.c (sds_start_remote): Fix printf call.
+
Tue Jun 16 16:32:08 1998 Mark Alexander <marka@cygnus.com>
* mn10200-tdep.c (mn10200_analyze_prologue): Fix null pointer
diff --git a/gdb/remote-sds.c b/gdb/remote-sds.c
index 5b16c82..312d26a 100644
--- a/gdb/remote-sds.c
+++ b/gdb/remote-sds.c
@@ -167,7 +167,7 @@ sds_start_remote (dummy)
SERIAL_WRITE (sds_desc, "{#}\r\n", 5);
while ((c = readchar (1)) >= 0)
- printf_unfiltered ("%c");
+ printf_unfiltered ("%c", c);
printf_unfiltered ("\n");
next_msg_id = 251;