]> git.ipfire.org Git - thirdparty/glibc.git/commitdiff
sprof: Make an error message identical to two others, and more accurate.
authorBenno Schulenberg <bensberg@justemail.net>
Sun, 25 Jan 2015 16:12:05 +0000 (17:12 +0100)
committerMike Frysinger <vapier@gentoo.org>
Wed, 25 Feb 2015 05:04:55 +0000 (00:04 -0500)
ChangeLog
elf/sprof.c

index 0d5c1f1fd2b0cebe8646ad1c4f5693507ccec8db..76ad5070152c0affad478d8498b9e5f17760da75 100644 (file)
--- a/ChangeLog
+++ b/ChangeLog
@@ -1,3 +1,7 @@
+2015-02-24  Benno Schulenberg  <bensberg@justemail.net>
+
+       * elf/sprof.c (load_shobj): Tweak error message to match others.
+
 2015-02-24  Kevin Easton  <kevin@guarana.org>
 
        [BZ #16145] (partial fix)
index 380b8d5437ca114a9d3cdb6339365158451a6fad..ec3fde3848ff333656c342b1bfda5d36267b547b 100644 (file)
@@ -439,7 +439,7 @@ load_shobj (const char *name)
   result = (struct shobj *) calloc (1, sizeof (struct shobj));
   if (result == NULL)
     {
-      error (0, errno, _("cannot create internal descriptors"));
+      error (0, errno, _("cannot create internal descriptor"));
       dlclose (map);
       return NULL;
     }