diff options
author | Fred Fish <fnf@specifix.com> | 1992-07-04 03:24:37 +0000 |
---|---|---|
committer | Fred Fish <fnf@specifix.com> | 1992-07-04 03:24:37 +0000 |
commit | 97225e37f7854d518da734224c7dada3e907312e (patch) | |
tree | 2b18d4efe035989a28c6d22dd841c901bc5d1901 /bfd/elf.c | |
parent | 4ed3a9ea66ca93b7dea29c5cdc23d80e77e442bb (diff) | |
download | gdb-97225e37f7854d518da734224c7dada3e907312e.zip gdb-97225e37f7854d518da734224c7dada3e907312e.tar.gz gdb-97225e37f7854d518da734224c7dada3e907312e.tar.bz2 |
* elf.c: Remove "(void)" casts from function calls where the
return value is ignored, in accordance with GNU coding standards.
Diffstat (limited to 'bfd/elf.c')
-rw-r--r-- | bfd/elf.c | 4 |
1 files changed, 2 insertions, 2 deletions
@@ -707,7 +707,7 @@ DEFUN(bfd_section_from_phdr, (abfd, hdr, index), (hdr -> p_memsz > hdr -> p_filesz)); sprintf (namebuf, split ? "segment%da" : "segment%d", index); name = bfd_alloc (abfd, strlen (namebuf) + 1); - (void) strcpy (name, namebuf); + strcpy (name, namebuf); newsect = bfd_make_section (abfd, name); newsect -> vma = hdr -> p_vaddr; newsect -> _raw_size = hdr -> p_filesz; @@ -733,7 +733,7 @@ DEFUN(bfd_section_from_phdr, (abfd, hdr, index), { sprintf (namebuf, "segment%db", index); name = bfd_alloc (abfd, strlen (namebuf) + 1); - (void) strcpy (name, namebuf); + strcpy (name, namebuf); newsect = bfd_make_section (abfd, name); newsect -> vma = hdr -> p_vaddr + hdr -> p_filesz; newsect -> _raw_size = hdr -> p_memsz - hdr -> p_filesz; |