From mboxrd@z Thu Jan 1 00:00:00 1970 From: Andrew Cagney To: Michael Snyder Cc: gdb-patches@sources.redhat.com, cagney@cygnus.com Subject: Re: [PATCH]: Set nr_bytes in remote_write_bytes Date: Mon, 14 May 2001 13:22:00 -0000 Message-id: <3B003E94.5020306@cygnus.com> References: <3B002606.5B737A04@cygnus.com> X-SW-Source: 2001-05/msg00306.html 2001-05-14 Michael Snyder * remote.c (remote_write_bytes): Set nr_bytes to return value of bin2hex. as far as I can tell the code: > ! bin2hex (myaddr, p, todo); > ! nr_bytes = todo; > break; is identical to: > ! nr_bytes = bin2hex (myaddr, p, todo); Although to be honest, I was having trouble figuring out what bin2hex() returned. Andrew