about summary refs log tree commit diff
path: root/elf
diff options
context:
space:
mode:
authorUlrich Drepper <drepper@redhat.com>1998-10-07 10:59:52 +0000
committerUlrich Drepper <drepper@redhat.com>1998-10-07 10:59:52 +0000
commitcc9b1d461e8e4085e762f51c4b1525dd93d0e4f9 (patch)
tree0beaaeed2d89f261203ff5f57b2a316b504d30ab /elf
parentc0de721b668922fd8aae0f962aa2a6a9bdb7dba1 (diff)
downloadglibc-cc9b1d461e8e4085e762f51c4b1525dd93d0e4f9.tar.gz
glibc-cc9b1d461e8e4085e762f51c4b1525dd93d0e4f9.tar.xz
glibc-cc9b1d461e8e4085e762f51c4b1525dd93d0e4f9.zip
(load_profdata): Fix typo in error message.
Diffstat (limited to 'elf')
-rw-r--r--elf/sprof.c3
1 files changed, 2 insertions, 1 deletions
diff --git a/elf/sprof.c b/elf/sprof.c
index d2426ebd64..8565dd981e 100644
--- a/elf/sprof.c
+++ b/elf/sprof.c
@@ -687,7 +687,8 @@ load_profdata (const char *name, struct shobj *shobj)
 
   if (st.st_size != shobj->expected_size)
     {
-      error (0, 0, _("profiling data file `%s' does match shared object `%s'"),
+      error (0, 0,
+	     _("profiling data file `%s' does not match shared object `%s'"),
 	     name, shobj->name);
       close (fd);
       return NULL;