diff options
author | Ulrich Drepper <drepper@redhat.com> | 1998-10-07 10:59:52 +0000 |
---|---|---|
committer | Ulrich Drepper <drepper@redhat.com> | 1998-10-07 10:59:52 +0000 |
commit | cc9b1d461e8e4085e762f51c4b1525dd93d0e4f9 (patch) | |
tree | 0beaaeed2d89f261203ff5f57b2a316b504d30ab /elf/sprof.c | |
parent | c0de721b668922fd8aae0f962aa2a6a9bdb7dba1 (diff) | |
download | glibc-cc9b1d461e8e4085e762f51c4b1525dd93d0e4f9.tar glibc-cc9b1d461e8e4085e762f51c4b1525dd93d0e4f9.tar.gz glibc-cc9b1d461e8e4085e762f51c4b1525dd93d0e4f9.tar.bz2 glibc-cc9b1d461e8e4085e762f51c4b1525dd93d0e4f9.zip |
(load_profdata): Fix typo in error message.
Diffstat (limited to 'elf/sprof.c')
-rw-r--r-- | elf/sprof.c | 3 |
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; |