This is the mail archive of the glibc-cvs@sourceware.org mailing list for the glibc project.


Index Nav: [Date Index] [Subject Index] [Author Index] [Thread Index]
Message Nav: [Date Prev] [Date Next] [Thread Prev] [Thread Next]
Other format: [Raw text]

GNU C Library master sources branch master updated. glibc-2.21-118-g9be1052


This is an automated email from the git hooks/post-receive script. It was
generated because a ref change was pushed to the repository containing
the project "GNU C Library master sources".

The branch, master has been updated
       via  9be1052b6f7583fad365643169cfc6732c96aee3 (commit)
      from  6807b1db8233ed84671f061b5d825622233df303 (commit)

Those revisions listed above that are new to this repository have
not appeared on any other notification email; so we list those
revisions in full, below.

- Log -----------------------------------------------------------------
http://sourceware.org/git/gitweb.cgi?p=glibc.git;a=commitdiff;h=9be1052b6f7583fad365643169cfc6732c96aee3

commit 9be1052b6f7583fad365643169cfc6732c96aee3
Author: Benno Schulenberg <bensberg@justemail.net>
Date:   Sun Jan 25 17:12:05 2015 +0100

    sprof: Make an error message identical to two others, and more accurate.

diff --git a/ChangeLog b/ChangeLog
index 0d5c1f1..76ad507 100644
--- 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)
diff --git a/elf/sprof.c b/elf/sprof.c
index 380b8d5..ec3fde3 100644
--- a/elf/sprof.c
+++ b/elf/sprof.c
@@ -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;
     }

-----------------------------------------------------------------------

Summary of changes:
 ChangeLog   |    4 ++++
 elf/sprof.c |    2 +-
 2 files changed, 5 insertions(+), 1 deletions(-)


hooks/post-receive
-- 
GNU C Library master sources


Index Nav: [Date Index] [Subject Index] [Author Index] [Thread Index]
Message Nav: [Date Prev] [Date Next] [Thread Prev] [Thread Next]