aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorMark Kettenis <kettenis@gnu.org>2005-06-22 11:42:54 +0000
committerMark Kettenis <kettenis@gnu.org>2005-06-22 11:42:54 +0000
commitc8d511af85b3a1bfb36ca3ea03f6745fdd635b55 (patch)
treec4423c2990b4652a7a085a0f58e63887fc634fe2
parentd620b259fbefdd733a3d6d4708005c4377f0bf59 (diff)
downloadgdb-c8d511af85b3a1bfb36ca3ea03f6745fdd635b55.zip
gdb-c8d511af85b3a1bfb36ca3ea03f6745fdd635b55.tar.gz
gdb-c8d511af85b3a1bfb36ca3ea03f6745fdd635b55.tar.bz2
* remote.c (extended_remote_restart): Pass buffer in call to
xsnprintf instead of a pointer to the buffer.
-rw-r--r--gdb/ChangeLog5
-rw-r--r--gdb/remote.c2
2 files changed, 6 insertions, 1 deletions
diff --git a/gdb/ChangeLog b/gdb/ChangeLog
index b495f90..236e17e 100644
--- a/gdb/ChangeLog
+++ b/gdb/ChangeLog
@@ -1,3 +1,8 @@
+2005-06-22 Mark Kettenis <kettenis@gnu.org>
+
+ * remote.c (extended_remote_restart): Pass buffer in call to
+ xsnprintf instead of a pointer to the buffer.
+
2005-06-21 Andrew Cagney <cagney@gnu.org>
* MAINTAINERS: List GDB's Steering Committee as responsible for
diff --git a/gdb/remote.c b/gdb/remote.c
index 1c5b1b1..5b6125d 100644
--- a/gdb/remote.c
+++ b/gdb/remote.c
@@ -1923,7 +1923,7 @@ extended_remote_restart (void)
/* Send the restart command; for reasons I don't understand the
remote side really expects a number after the "R". */
- xsnprintf (&buf, rs->remote_packet_size, "R%x", 0);
+ xsnprintf (buf, rs->remote_packet_size, "R%x", 0);
putpkt (buf);
/* Now query for status so this looks just like we restarted