Automatic date update in version.in
[deliverable/binutils-gdb.git] / bfd / sparclinux.c
index 7632dbfd297bb2a156251c9ab16a91f3c2d0bbc1..54f6a8e7df6d20626e5f8b0e5d374e0497c4e258 100644 (file)
@@ -1,5 +1,5 @@
 /* BFD back-end for linux flavored sparc a.out binaries.
-   Copyright (C) 1992-2015 Free Software Foundation, Inc.
+   Copyright (C) 1992-2018 Free Software Foundation, Inc.
 
    This file is part of BFD, the Binary File Descriptor library.
 
@@ -31,7 +31,7 @@
 #include "aout/aout64.h"
 #include "aout/stab_gnu.h"
 #include "aout/ar.h"
-#include "libaout.h"           /* BFD a.out internal data structures */
+#include "libaout.h"          /* BFD a.out internal data structures */
 
 #define DEFAULT_ARCH bfd_arch_sparc
 /* Do not "beautify" the CONCAT* macro args.  Traditional C will not
@@ -66,11 +66,11 @@ sparclinux_write_object_contents (bfd *abfd)
   struct external_exec exec_bytes;
   struct internal_exec *execp = exec_hdr (abfd);
 
-  N_SET_MACHTYPE (*execp, M_SPARC);
+  N_SET_MACHTYPE (execp, M_SPARC);
 
   obj_reloc_entry_size (abfd) = RELOC_STD_SIZE;
 
-  WRITE_HEADERS(abfd, execp);
+  WRITE_HEADERS (abfd, execp);
 
   return TRUE;
 }
@@ -409,15 +409,16 @@ linux_tally_symbols (struct linux_link_hash_entry *h, void * data)
        alloc = (char *) bfd_malloc ((bfd_size_type) strlen (name) + 1);
 
       if (p == NULL || alloc == NULL)
-       (*_bfd_error_handler) (_("Output file requires shared library `%s'\n"),
-                              name);
+       _bfd_error_handler (_("output file requires shared library `%s'"),
+                           name);
       else
        {
          strcpy (alloc, name);
          p = strrchr (alloc, '_');
          *p++ = '\0';
-         (*_bfd_error_handler)
-           (_("Output file requires shared library `%s.so.%s'\n"),
+         _bfd_error_handler
+           /* xgettext:c-format */
+           (_("output file requires shared library `%s.so.%s'"),
             alloc, p);
          free (alloc);
        }
@@ -603,8 +604,8 @@ linux_finish_dynamic_link (bfd *output_bfd, struct bfd_link_info *info)
       if (f->h->root.root.type != bfd_link_hash_defined
          && f->h->root.root.type != bfd_link_hash_defweak)
        {
-         (*_bfd_error_handler)
-           (_("Symbol %s not defined for fixups\n"),
+         _bfd_error_handler
+           (_("symbol %s not defined for fixups"),
             f->h->root.root.root.string);
          continue;
        }
@@ -653,8 +654,8 @@ linux_finish_dynamic_link (bfd *output_bfd, struct bfd_link_info *info)
          if (f->h->root.root.type != bfd_link_hash_defined
              && f->h->root.root.type != bfd_link_hash_defweak)
            {
-             (*_bfd_error_handler)
-               (_("Symbol %s not defined for fixups\n"),
+             _bfd_error_handler
+               (_("symbol %s not defined for fixups"),
                 f->h->root.root.root.string);
              continue;
            }
@@ -678,7 +679,7 @@ linux_finish_dynamic_link (bfd *output_bfd, struct bfd_link_info *info)
 
   if (linux_hash_table (info)->fixup_count != fixups_written)
     {
-      (*_bfd_error_handler) (_("Warning: fixup count mismatch\n"));
+      _bfd_error_handler (_("warning: fixup count mismatch"));
       while (linux_hash_table (info)->fixup_count > fixups_written)
        {
          bfd_put_32 (output_bfd, (bfd_vma) 0, fixup_table);
This page took 0.044263 seconds and 4 git commands to generate.