This is the mail archive of the libc-alpha@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]

[PATCH] Make an error message identical to two others, and more accurate.


---
 elf/sprof.c |    2 +-
 1 files changed, 1 insertions(+), 1 deletions(-)

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;
     }
-- 
1.7.0.4


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