Fix "PowerPC64 ELFv2 entry code" for big-endian
[deliverable/binutils-gdb.git] / gas / messages.c
index 05c74420c2d1d7b85e2eec007479ef961f1672af..f161dc38d72f30e92e3451ff350569da3e547625 100644 (file)
@@ -1,5 +1,5 @@
 /* messages.c - error reporter -
-   Copyright (C) 1987-2014 Free Software Foundation, Inc.
+   Copyright (C) 1987-2016 Free Software Foundation, Inc.
    This file is part of GAS, the GNU Assembler.
 
    GAS is free software; you can redistribute it and/or modify
@@ -151,12 +151,12 @@ as_warn_internal (char *file, unsigned int line, char *buffer)
   if (file)
     {
       if (line != 0)
-       fprintf (stderr, "%s:%u: %s %s\n", file, line, _("Warning: "), buffer);
+       fprintf (stderr, "%s:%u: %s%s\n", file, line, _("Warning: "), buffer);
       else
-       fprintf (stderr, "%s: %s %s\n", file, _("Warning: "), buffer);
+       fprintf (stderr, "%s: %s%s\n", file, _("Warning: "), buffer);
     }
   else
-    fprintf (stderr, "%s %s\n", _("Warning: "), buffer);
+    fprintf (stderr, "%s%s\n", _("Warning: "), buffer);
 #ifndef NO_LISTING
   listing_warning (buffer);
 #endif
@@ -216,12 +216,12 @@ as_bad_internal (char *file, unsigned int line, char *buffer)
   if (file)
     {
       if (line != 0)
-       fprintf (stderr, "%s:%u: %s %s\n", file, line, _("Error:"), buffer);
+       fprintf (stderr, "%s:%u: %s%s\n", file, line, _("Error: "), buffer);
       else
-       fprintf (stderr, "%s: %s %s\n", file, _("Error:"), buffer);
+       fprintf (stderr, "%s: %s%s\n", file, _("Error: "), buffer);
     }
   else
-    fprintf (stderr, "%s %s\n", _("Error:"), buffer);
+    fprintf (stderr, "%s%s\n", _("Error: "), buffer);
 #ifndef NO_LISTING
   listing_error (buffer);
 #endif
@@ -295,10 +295,10 @@ as_assert (const char *file, int line, const char *fn)
   as_show_where ();
   fprintf (stderr, _("Internal error!\n"));
   if (fn)
-    fprintf (stderr, _("Assertion failure in %s at %s line %d.\n"),
+    fprintf (stderr, _("Assertion failure in %s at %s:%d.\n"),
             fn, file, line);
   else
-    fprintf (stderr, _("Assertion failure at %s line %d.\n"), file, line);
+    fprintf (stderr, _("Assertion failure at %s:%d.\n"), file, line);
   fprintf (stderr, _("Please report this bug.\n"));
   xexit (EXIT_FAILURE);
 }
@@ -311,10 +311,10 @@ as_abort (const char *file, int line, const char *fn)
 {
   as_show_where ();
   if (fn)
-    fprintf (stderr, _("Internal error, aborting at %s line %d in %s\n"),
+    fprintf (stderr, _("Internal error, aborting at %s:%d in %s\n"),
             file, line, fn);
   else
-    fprintf (stderr, _("Internal error, aborting at %s line %d\n"),
+    fprintf (stderr, _("Internal error, aborting at %s:%d\n"),
             file, line);
   fprintf (stderr, _("Please report this bug.\n"));
   xexit (EXIT_FAILURE);
This page took 0.025587 seconds and 4 git commands to generate.