xsnprintf instead of a pointer to the buffer.
+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
/* 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