diff options
author | Fred Fish <fnf@specifix.com> | 1992-07-04 03:22:08 +0000 |
---|---|---|
committer | Fred Fish <fnf@specifix.com> | 1992-07-04 03:22:08 +0000 |
commit | 4ed3a9ea66ca93b7dea29c5cdc23d80e77e442bb (patch) | |
tree | ab1ee3900e42f9b78e93b188f593963550e21566 /gdb/objfiles.c | |
parent | 4c7c6bab1f8ca0ff46795c843e887171f86731d1 (diff) | |
download | gdb-4ed3a9ea66ca93b7dea29c5cdc23d80e77e442bb.zip gdb-4ed3a9ea66ca93b7dea29c5cdc23d80e77e442bb.tar.gz gdb-4ed3a9ea66ca93b7dea29c5cdc23d80e77e442bb.tar.bz2 |
* breakpoint.c, buildsym.c, c-exp.y, coffread.c, command.c,
core.c, cplus-dem.c, dbxread.c, dwarfread.c, elfread.c, environ.c,
eval.c, findvar.c, gdbtypes.c, hppabsd-tdep.c, hppahpux-tdep.c,
i386-tdep.c, ieee-float.c, infcmd.c, inflow.c, infptrace.c,
infrun.c, m2-exp.y, mipsread.c, objfiles.c, parse.c, procfs.c,
putenv.c, remote-mm.c, remote-vx.c, solib.c, sparc-tdep.c,
sparc-xdep.c, stack.c, symfile.c, symtab.c, symtab.h, target.c,
tm-i386v.h, tm-sparc.h, utils.c, valarith.c, valops.c, valprint.c,
values.c, xcoffread.c:
Remove "(void)" casts from function calls where the return value
is ignored, in accordance with GNU coding standards.
Diffstat (limited to 'gdb/objfiles.c')
-rw-r--r-- | gdb/objfiles.c | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/gdb/objfiles.c b/gdb/objfiles.c index 7d670d1..d2f6bbc 100644 --- a/gdb/objfiles.c +++ b/gdb/objfiles.c @@ -95,7 +95,7 @@ allocate_objfile (abfd, mapped) if (((mapto = map_to_address ()) == 0) || ((md = mmalloc_attach (fd, (void *) mapto)) == NULL)) { - (void) close (fd); + close (fd); } else if ((objfile = (struct objfile *) mmalloc_getkey (md, 0)) != NULL) { @@ -121,7 +121,7 @@ allocate_objfile (abfd, mapped) the first malloc. See comments in init_malloc() and mmcheck(). */ init_malloc (md); objfile = (struct objfile *) xmmalloc (md, sizeof (struct objfile)); - (void) memset (objfile, 0, sizeof (struct objfile)); + memset (objfile, 0, sizeof (struct objfile)); objfile -> md = md; objfile -> mmfd = fd; objfile -> flags |= OBJF_MAPPED; @@ -166,7 +166,7 @@ allocate_objfile (abfd, mapped) if (objfile == NULL) { objfile = (struct objfile *) xmalloc (sizeof (struct objfile)); - (void) memset (objfile, 0, sizeof (struct objfile)); + memset (objfile, 0, sizeof (struct objfile)); objfile -> md = NULL; obstack_full_begin (&objfile -> psymbol_obstack, 0, 0, xmalloc, free, (void *) 0, 0); @@ -302,7 +302,7 @@ free_objfile (objfile) mmfd = objfile -> mmfd; mmalloc_detach (objfile -> md); objfile = NULL; - (void) close (mmfd); + close (mmfd); } #endif /* !defined(NO_MMALLOC) && defined(HAVE_MMAP) */ |