diff options
author | Jim Kingdon <jkingdon@engr.sgi.com> | 1993-10-03 01:50:53 +0000 |
---|---|---|
committer | Jim Kingdon <jkingdon@engr.sgi.com> | 1993-10-03 01:50:53 +0000 |
commit | 77fe3f84ff130692eba37c0d62275cfcf92efa74 (patch) | |
tree | 08b01ff15e00b13c7389906848e2a37ac5b290a1 /gdb/objfiles.c | |
parent | bde18e3eaa9a354103b5d640caf2fe443daa44ed (diff) | |
download | gdb-77fe3f84ff130692eba37c0d62275cfcf92efa74.zip gdb-77fe3f84ff130692eba37c0d62275cfcf92efa74.tar.gz gdb-77fe3f84ff130692eba37c0d62275cfcf92efa74.tar.bz2 |
* mipsread.c, objfiles.c, utils.c: Use PTR not void *. RISC/OS
4.02 lacks void *.
* elfread.c: Use void * not PTR inside PARAMS.
Diffstat (limited to 'gdb/objfiles.c')
-rw-r--r-- | gdb/objfiles.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/gdb/objfiles.c b/gdb/objfiles.c index 7b55084..b111f00 100644 --- a/gdb/objfiles.c +++ b/gdb/objfiles.c @@ -121,7 +121,7 @@ allocate_objfile (abfd, mapped) { struct objfile *objfile = NULL; int fd; - void *md; + PTR md; CORE_ADDR mapto; mapped |= mapped_symbol_files; @@ -142,7 +142,7 @@ allocate_objfile (abfd, mapped) if (fd >= 0) { if (((mapto = map_to_address ()) == 0) || - ((md = mmalloc_attach (fd, (void *) mapto)) == NULL)) + ((md = mmalloc_attach (fd, (PTR) mapto)) == NULL)) { close (fd); } |