summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-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));