* corefile.c (core_init): Report that the executable is not in the
authorBen Elliston <bje@au.ibm.com>
Wed, 22 Mar 2006 03:51:02 +0000 (03:51 +0000)
committerBen Elliston <bje@au.ibm.com>
Wed, 22 Mar 2006 03:51:02 +0000 (03:51 +0000)
expected executable format rather than "a.out" format.

gprof/ChangeLog
gprof/corefile.c

index 97d68b02197e4a9ccfa31a58c7d83bb61cef5aee..7ed4a621ad5dede79440c72df0277723b40a5cef 100644 (file)
@@ -1,3 +1,8 @@
+2006-03-21  Ben Elliston  <bje@au.ibm.com>
+
+       * corefile.c (core_init): Report that the executable is not in the
+       expected executable format rather than "a.out" format.
+
 2006-03-09  Nick Clifton  <nickc@redhat.com>
 
        * po/sv.po: Updated Swedish translation.
index e02d95833f4cdca8bbd8b63abb960b1152b2d3f9..a8620efc45f4ab08738f0098f31c622cbcf95fc8 100644 (file)
@@ -155,7 +155,7 @@ core_init (const char *aout_name)
 
   if (!bfd_check_format (core_bfd, bfd_object))
     {
-      fprintf (stderr, _("%s: %s: not in a.out format\n"), whoami, aout_name);
+      fprintf (stderr, _("%s: %s: not in executable format\n"), whoami, aout_name);
       done (1);
     }
 
This page took 0.026396 seconds and 4 git commands to generate.