diff options
author | Eric Andersen | 2000-07-14 06:49:52 +0000 |
---|---|---|
committer | Eric Andersen | 2000-07-14 06:49:52 +0000 |
commit | fad04fdd12604a46eff62875343515c33e1863c6 (patch) | |
tree | 7b840eb074878c454141ce76ba7328f4a8621f1b /coreutils/test.c | |
parent | b870af09ae1892ab84dd089529675cc2df533e71 (diff) | |
download | busybox-fad04fdd12604a46eff62875343515c33e1863c6.zip busybox-fad04fdd12604a46eff62875343515c33e1863c6.tar.gz |
More cleanups.
-Erik
Diffstat (limited to 'coreutils/test.c')
-rw-r--r-- | coreutils/test.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/coreutils/test.c b/coreutils/test.c index d7b34a6..175cb5d 100644 --- a/coreutils/test.c +++ b/coreutils/test.c @@ -372,7 +372,7 @@ filstat(nm, mode) enum token mode; { struct stat s; - int i; + unsigned int i; if (mode == FILSYM) { #ifdef S_IFLNK @@ -535,7 +535,7 @@ char *path; int mode; { struct stat st; - int euid = geteuid(); + unsigned int euid = geteuid(); if (stat (path, &st) < 0) return (-1); |