summaryrefslogtreecommitdiff
path: root/src/arscan.c
diff options
context:
space:
mode:
authorPaul Smith <psmith@gnu.org>2023-04-01 15:57:04 -0400
committerPaul Smith <psmith@gnu.org>2023-04-02 10:02:18 -0400
commitc2792d6129fe9b13efba159126430d657f447033 (patch)
treee17008438550ba148ae1fb7fc15426b3aac388e6 /src/arscan.c
parenta0d1e76d604df5bd006fd5ed6a69963d3c6b4d7a (diff)
downloadmake-git-c2792d6129fe9b13efba159126430d657f447033.tar.gz
Adjust output strings to be aligned
Change error and fatal messages to start with lowercase and not end with a period. Note a few very common messages were left as-is, just in case some other tools parse them. Also modify the test known-good-output to satisfy the messages.
Diffstat (limited to 'src/arscan.c')
-rw-r--r--src/arscan.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/src/arscan.c b/src/arscan.c
index 7ad1fbfa..62e7420b 100644
--- a/src/arscan.c
+++ b/src/arscan.c
@@ -399,11 +399,11 @@ parse_int (const char *ptr, const size_t len, const int base, uintmax_t max,
if (*ptr < '0' || *ptr > maxchar)
OSSS (fatal, NILF,
- _("Invalid %s for archive %s member %s"), type, archive, name);
+ _("invalid %s for archive %s member %s"), type, archive, name);
nv = (val * base) + (*ptr - '0');
if (nv < val || nv > max)
OSSS (fatal, NILF,
- _("Invalid %s for archive %s member %s"), type, archive, name);
+ _("invalid %s for archive %s member %s"), type, archive, name);
val = nv;
++ptr;
}