diff options
author | Stan Shebs <shebs@codesourcery.com> | 1995-06-25 23:23:06 +0000 |
---|---|---|
committer | Stan Shebs <shebs@codesourcery.com> | 1995-06-25 23:23:06 +0000 |
commit | fe442b4308951b473a54d8d210aa0835f3853c2f (patch) | |
tree | 583eef9d67de0a0c26f631872883043a51ea2701 /gdb/dcache.h | |
parent | c9f7cd7b970dd9c8117f8a4e9755aa2b5c20c2ba (diff) | |
download | gdb-fe442b4308951b473a54d8d210aa0835f3853c2f.zip gdb-fe442b4308951b473a54d8d210aa0835f3853c2f.tar.gz gdb-fe442b4308951b473a54d8d210aa0835f3853c2f.tar.bz2 |
* 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.
Diffstat (limited to 'gdb/dcache.h')
-rw-r--r-- | gdb/dcache.h | 2 |
1 files changed, 1 insertions, 1 deletions
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; |