diff options
author | 2015-01-25 17:12:05 +0100 | |
---|---|---|
committer | 2015-02-25 00:04:55 -0500 | |
commit | 9be1052b6f7583fad365643169cfc6732c96aee3 (patch) | |
tree | c60da90683aa395e183b511952bee705c9f41a67 /elf | |
parent | Reduce lock contention in __tz_convert() [BZ #16145] (partial fix) (diff) | |
download | glibc-9be1052b6f7583fad365643169cfc6732c96aee3.tar.gz glibc-9be1052b6f7583fad365643169cfc6732c96aee3.tar.bz2 glibc-9be1052b6f7583fad365643169cfc6732c96aee3.zip |
sprof: Make an error message identical to two others, and more accurate.
Diffstat (limited to 'elf')
-rw-r--r-- | elf/sprof.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/elf/sprof.c b/elf/sprof.c index 380b8d5437..ec3fde3848 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; } |