diff options
Diffstat (limited to 'gdb')
-rw-r--r-- | gdb/ChangeLog | 5 | ||||
-rw-r--r-- | gdb/remote.c | 2 |
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 |