From: Stan Shebs Date: Sun, 25 Jun 1995 23:23:06 +0000 (+0000) Subject: * remote.c (remote_read_bytes, remote_write_bytes): Second arg X-Git-Tag: gdb-4_18~11591 X-Git-Url: http://review.tizen.org/git/?a=commitdiff_plain;h=fe442b4308951b473a54d8d210aa0835f3853c2f;p=external%2Fbinutils.git * remote.c (remote_read_bytes, remote_write_bytes): Second arg should be char *, not unsigned char *. * dcache.h (memxferfunc): Ditto. * monitor.c (monitor_write_memory, monitor_read_memory_single): Ditto. (monitor_make_srec): Let compiler figure size of hextab. --- diff --git a/gdb/ChangeLog b/gdb/ChangeLog index 2254328..6687541 100644 --- a/gdb/ChangeLog +++ b/gdb/ChangeLog @@ -1,3 +1,12 @@ +Sun Jun 25 15:30:43 1995 Stan Shebs + + * remote.c (remote_read_bytes, remote_write_bytes): Second arg + should be char *, not unsigned char *. + * dcache.h (memxferfunc): Ditto. + * monitor.c (monitor_write_memory, monitor_read_memory_single): + Ditto. + (monitor_make_srec): Let compiler figure size of hextab. + Sat Jun 24 19:27:37 1995 Jeffrey A. Law * lynx-nat.c (child_wait): Don't restart new threads and loop diff --git a/gdb/dcache.h b/gdb/dcache.h index 2d0c321..85757c6 100644 --- a/gdb/dcache.h +++ b/gdb/dcache.h @@ -23,7 +23,7 @@ Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA. */ #define DCACHE_H typedef int (*memxferfunc) PARAMS((CORE_ADDR memaddr, - unsigned char *myaddr, + char *myaddr, int len)); typedef struct dcache_struct DCACHE;