From: Jim Meyering Date: Thu, 21 Sep 2000 05:40:28 +0000 (+0000) Subject: (parse_user_spec): Remove debugging printf I'd added. X-Git-Url: https://pintos-os.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=a0611e0e25a9a502332a5464b014f11cc6cd88d6;p=pspp (parse_user_spec): Remove debugging printf I'd added. Argh! --- diff --git a/lib/userspec.c b/lib/userspec.c index 67bde6574d..27b687d43e 100644 --- a/lib/userspec.c +++ b/lib/userspec.c @@ -261,7 +261,6 @@ parse_user_spec (const char *spec_arg, uid_t *uid, gid_t *gid, if (xstrtoul (u, NULL, 0, &tmp_long, NULL) != LONGINT_OK || tmp_long > MAXUID) return _(E_invalid_user); - printf ("MAXUID: %u\n", (uid_t) MAXUID); *uid = tmp_long; } }