From: Eric Andersen Date: Fri, 14 Jul 2000 06:27:54 +0000 (-0000) Subject: uid and gid were unsigned, but were compared vs signed values (-1) X-Git-Tag: 0_47~251 X-Git-Url: https://git.librecmc.org/?a=commitdiff_plain;h=58361a44b5105e2ed5cae5eb69faa975a993bf72;p=oweals%2Fbusybox.git uid and gid were unsigned, but were compared vs signed values (-1) -Erik --- diff --git a/chmod_chown_chgrp.c b/chmod_chown_chgrp.c index cf6a50895..156a0a9f9 100644 --- a/chmod_chown_chgrp.c +++ b/chmod_chown_chgrp.c @@ -33,8 +33,8 @@ #include -static unsigned long uid = -1; -static unsigned long gid = -1; +static long uid = -1; +static long gid = -1; static int whichApp; static char *theMode = NULL;