From: Ulrich Drepper Date: Wed, 7 Oct 1998 10:59:52 +0000 (+0000) Subject: (load_profdata): Fix typo in error message. X-Git-Tag: cvs/glibc-2_0_98~21 X-Git-Url: https://sourceware.org/git/?a=commitdiff_plain;h=cc9b1d461e8e4085e762f51c4b1525dd93d0e4f9;p=glibc.git (load_profdata): Fix typo in error message. --- 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;