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/coffread.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/coffread.c')
-rw-r--r-- | gdb/coffread.c | 24 |
1 files changed, 12 insertions, 12 deletions
diff --git a/gdb/coffread.c b/gdb/coffread.c index 959c3bf..e82b6fc 100644 --- a/gdb/coffread.c +++ b/gdb/coffread.c @@ -324,7 +324,7 @@ coff_lookup_type (index) type_vector = (struct type **) xrealloc ((char *) type_vector, type_vector_length * sizeof (struct type *)); - (void) memset (&type_vector[old_vector_length], 0, + memset (&type_vector[old_vector_length], 0, (type_vector_length - old_vector_length) * sizeof(struct type *)); } return &type_vector[index]; @@ -918,14 +918,14 @@ read_coff_symtab (symtab_offset, nsyms, objfile) nlist_stream_global = stream; nlist_nsyms_global = nsyms; last_source_file = 0; - (void) memset (opaque_type_chain, 0, sizeof opaque_type_chain); + memset (opaque_type_chain, 0, sizeof opaque_type_chain); if (type_vector) /* Get rid of previous one */ free ((PTR)type_vector); type_vector_length = 160; type_vector = (struct type **) xmalloc (type_vector_length * sizeof (struct type *)); - (void) memset (type_vector, 0, type_vector_length * sizeof (struct type *)); + memset (type_vector, 0, type_vector_length * sizeof (struct type *)); coff_start_symtab (); @@ -1057,7 +1057,7 @@ read_coff_symtab (symtab_offset, nsyms, objfile) break; } } - (void) process_coff_symbol (cs, &main_aux, objfile); + process_coff_symbol (cs, &main_aux, objfile); break; case C_FCN: @@ -1164,7 +1164,7 @@ read_coff_symtab (symtab_offset, nsyms, objfile) break; default: - (void) process_coff_symbol (cs, &main_aux, objfile); + process_coff_symbol (cs, &main_aux, objfile); break; } } @@ -1318,7 +1318,7 @@ init_stringtab (chan, offset) if (stringtab == NULL) return -1; - (void) memcpy (stringtab, &length, sizeof length); + memcpy (stringtab, &length, sizeof length); if (length == sizeof length) /* Empty table -- just the count */ return 0; @@ -1425,7 +1425,7 @@ init_lineno (chan, offset, size) return -1; /* Terminate it with an all-zero sentinel record */ - (void) memset (linetab + size, 0, local_linesz); + memset (linetab + size, 0, local_linesz); make_cleanup (free, linetab); /* Be sure it gets de-allocated. */ return 0; @@ -1484,7 +1484,7 @@ patch_type (type, real_type) TYPE_FIELDS (target) = (struct field *) obstack_alloc (¤t_objfile -> type_obstack, field_size); - (void) memcpy (TYPE_FIELDS (target), TYPE_FIELDS (real_target), field_size); + memcpy (TYPE_FIELDS (target), TYPE_FIELDS (real_target), field_size); if (TYPE_NAME (real_target)) { @@ -1575,7 +1575,7 @@ process_coff_symbol (cs, aux, objfile) #endif struct type *temptype; - (void) memset (sym, 0, sizeof (struct symbol)); + memset (sym, 0, sizeof (struct symbol)); name = cs->c_name; name = (name[0] == '_' ? name + offset : name); SYMBOL_NAME (sym) = obstack_copy0 (&objfile->symbol_obstack, name, strlen (name)); @@ -1594,7 +1594,7 @@ process_coff_symbol (cs, aux, objfile) struct type *new = (struct type *) obstack_alloc (&objfile->symbol_obstack, sizeof (struct type)); - (void) memcpy (new, lookup_function_type (decode_function_type (cs, cs->c_type, aux)), + memcpy (new, lookup_function_type (decode_function_type (cs, cs->c_type, aux)), sizeof(struct type)); SYMBOL_TYPE (sym) = new; in_function_type = SYMBOL_TYPE(sym); @@ -1792,7 +1792,7 @@ decode_type (cs, c_type, aux) type = (struct type *) obstack_alloc (¤t_objfile -> type_obstack, sizeof (struct type)); - (void) memset (type, 0, sizeof (struct type)); + memset (type, 0, sizeof (struct type)); TYPE_OBJFILE (type) = current_objfile; base_type = decode_type (cs, new_c_type, aux); @@ -2103,7 +2103,7 @@ coff_read_enum_type (index, length, lastsym) { case C_MOE: sym = (struct symbol *) xmalloc (sizeof (struct symbol)); - (void) memset (sym, 0, sizeof (struct symbol)); + memset (sym, 0, sizeof (struct symbol)); SYMBOL_NAME (sym) = savestring (name, strlen (name)); SYMBOL_CLASS (sym) = LOC_CONST; |