From: Ulrich Drepper Date: Sat, 3 Sep 2005 21:31:27 +0000 (+0000) Subject: Some more message unifications. X-Git-Tag: elfutils-0.120~69 X-Git-Url: http://git.ipfire.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=d112ef86686e4f47aad5b30ee38b4618a2bea611;p=thirdparty%2Felfutils.git Some more message unifications. --- diff --git a/src/nm.c b/src/nm.c index 2e3d16150..66e0b21b9 100644 --- a/src/nm.c +++ b/src/nm.c @@ -365,7 +365,7 @@ process_file (const char *fname, bool more_than_one) INTERNAL_ERROR (fname); if (close (fd) != 0) - error (EXIT_FAILURE, errno, gettext ("while close '%s'"), fname); + error (EXIT_FAILURE, errno, gettext ("while closing '%s'"), fname); return result; } @@ -377,7 +377,7 @@ process_file (const char *fname, bool more_than_one) INTERNAL_ERROR (fname); if (close (fd) != 0) - error (EXIT_FAILURE, errno, gettext ("while close '%s'"), fname); + error (EXIT_FAILURE, errno, gettext ("while closing '%s'"), fname); return result; } diff --git a/src/size.c b/src/size.c index 13bce1eca..1db080418 100644 --- a/src/size.c +++ b/src/size.c @@ -306,7 +306,7 @@ process_file (const char *fname) INTERNAL_ERROR (fname); if (close (fd) != 0) - error (EXIT_FAILURE, errno, gettext ("while close '%s'"), fname); + error (EXIT_FAILURE, errno, gettext ("while closing '%s'"), fname); return 0; }