]> git.cameronkatri.com Git - pw-darwin.git/commitdiff
Use the right format string for printing ULONG_MAX.
authorDavid Malone <dwmalone@FreeBSD.org>
Mon, 5 Mar 2001 11:58:12 +0000 (11:58 +0000)
committerDavid Malone <dwmalone@FreeBSD.org>
Mon, 5 Mar 2001 11:58:12 +0000 (11:58 +0000)
libc/gen/pw_scan.c

index 3ecb9e0ac07a834bca82da7d09abde7c2b929fb7..a2eadba953f0a608f588c61b1ea8d5982c2ac293 100644 (file)
@@ -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) {