From d112ef86686e4f47aad5b30ee38b4618a2bea611 Mon Sep 17 00:00:00 2001 From: Ulrich Drepper Date: Sat, 3 Sep 2005 21:31:27 +0000 Subject: [PATCH] Some more message unifications. --- src/nm.c | 4 ++-- src/size.c | 2 +- 2 files changed, 3 insertions(+), 3 deletions(-) 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; } -- 2.47.2