summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
-rw-r--r--libc/gen/pw_scan.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/libc/gen/pw_scan.c b/libc/gen/pw_scan.c
index 3ecb9e0..a2eadba 100644
--- a/libc/gen/pw_scan.c
+++ b/libc/gen/pw_scan.c
@@ -103,7 +103,7 @@ __pw_scan(char *bp, struct passwd *pw, int flags)
id = strtoul(p, (char **)NULL, 10);
if (errno == ERANGE) {
if (flags & _PWSCAN_WARN)
- warnx("%s > max uid value (%u)", p, ULONG_MAX);
+ warnx("%s > max uid value (%lu)", p, ULONG_MAX);
return (0);
}
if (root && id) {
@@ -123,7 +123,7 @@ __pw_scan(char *bp, struct passwd *pw, int flags)
id = strtoul(p, (char **)NULL, 10);
if (errno == ERANGE) {
if (flags & _PWSCAN_WARN)
- warnx("%s > max gid value (%u)", p, ULONG_MAX);
+ warnx("%s > max gid value (%lu)", p, ULONG_MAX);
return (0);
}
if (flags & _PWSCAN_WARN && pw_big_ids_warning && id > USHRT_MAX) {