* elf.c: Remove "(void)" casts from function calls where the
authorFred Fish <fnf@specifix.com>
Sat, 4 Jul 1992 03:24:37 +0000 (03:24 +0000)
committerFred Fish <fnf@specifix.com>
Sat, 4 Jul 1992 03:24:37 +0000 (03:24 +0000)
return value is ignored, in accordance with GNU coding standards.

bfd/ChangeLog
bfd/elf.c

index a88b765ebc3b5f46f632255129751d60a3051881..e57ce8ace34099195bd823440df9f7f52f960e0a 100644 (file)
@@ -1,3 +1,8 @@
+Fri Jul  3 20:23:34 1992  Fred Fish  (fnf@cygnus.com)
+
+       * elf.c:  Remove "(void)" casts from function calls where the
+       return value is ignored, in accordance with GNU coding standards.
+
 Tue Jun 30 16:49:12 1992  Fred Fish  (fnf@cygnus.com)
 
        * hppa.c:  Apply John's standard fix to avoid "empty translation
index 26b2a1e79a01dc8ef098e96be8678db349e4e1e7..cb1e9364fc2d3c6e7898920206443bf126bf205c 100644 (file)
--- a/bfd/elf.c
+++ b/bfd/elf.c
@@ -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;