summaryrefslogtreecommitdiff
path: root/paxlib
diff options
context:
space:
mode:
authorSergey Poznyakoff <gray@gnu.org.ua>2006-12-07 13:18:14 +0000
committerSergey Poznyakoff <gray@gnu.org.ua>2006-12-07 13:18:14 +0000
commit78a68df71fa89b366908e1a42b0bec89696fbfb3 (patch)
tree8b355d828da1888efda56f2ab55d87c67643167b /paxlib
parentfec10b3f1b52a18c8441202bdcac32887cb48788 (diff)
downloadpaxutils-78a68df71fa89b366908e1a42b0bec89696fbfb3.tar.gz
(read_fatal_details): Fix wording of the error message.
Diffstat (limited to 'paxlib')
-rw-r--r--paxlib/error.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/paxlib/error.c b/paxlib/error.c
index 1fe2909..000d9e4 100644
--- a/paxlib/error.c
+++ b/paxlib/error.c
@@ -208,8 +208,8 @@ read_fatal_details (char const *name, off_t offset, size_t size)
char buf[UINTMAX_STRSIZE_BOUND];
int e = errno;
FATAL_ERROR ((0, e,
- ngettext ("%s: Read error at byte %s, reading %lu byte",
- "%s: Read error at byte %s, reading %lu bytes",
+ ngettext ("%s: Read error at byte %s, while reading %lu byte",
+ "%s: Read error at byte %s, while reading %lu bytes",
size),
quotearg_colon (name), STRINGIFY_BIGINT (offset, buf),
(unsigned long) size));