Backport 2004-10-27 Jim Blandy <jimb@redhat.com>
* remote.c (fetch_register_using_p): Construct 'p' packet in a
manner independent of the host byte order.
+2004-11-05 Andrew Cagney <cagney@gnu.org>
+
+ Backport 2004-10-27 Jim Blandy <jimb@redhat.com>
+ * remote.c (fetch_register_using_p): Construct 'p' packet in a
+ manner independent of the host byte order.
+
2004-11-04 Kei Sakamoto <sakamoto.kei@denesas.com>
* Makefile.in (m32r-tdep.o): Update dependencies.
char regp[MAX_REGISTER_SIZE];
int i;
- buf[0] = 'p';
- bin2hex((char *) ®num, &buf[1], sizeof(regnum));
- buf[9] = 0;
+ p = buf;
+ *p++ = 'p';
+ p += hexnumstr (p, regnum);
+ *p++ = '\0';
remote_send (buf, rs->remote_packet_size);
if (buf[0] != 0 && buf[0] != 'E') {
p = buf;