mirror of git://sourceware.org/git/glibc.git
(load_profdata): Fix typo in error message.
This commit is contained in:
parent
c0de721b66
commit
cc9b1d461e
|
|
@ -687,7 +687,8 @@ load_profdata (const char *name, struct shobj *shobj)
|
||||||
|
|
||||||
if (st.st_size != shobj->expected_size)
|
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);
|
name, shobj->name);
|
||||||
close (fd);
|
close (fd);
|
||||||
return NULL;
|
return NULL;
|
||||||
|
|
|
||||||
Loading…
Reference in New Issue