aboutsummaryrefslogtreecommitdiff
path: root/coreutils/test.c
diff options
context:
space:
mode:
authorEric Andersen <andersen@codepoet.org>2000-07-14 06:49:52 +0000
committerEric Andersen <andersen@codepoet.org>2000-07-14 06:49:52 +0000
commitfad04fdd12604a46eff62875343515c33e1863c6 (patch)
tree7b840eb074878c454141ce76ba7328f4a8621f1b /coreutils/test.c
parentb870af09ae1892ab84dd089529675cc2df533e71 (diff)
downloadbusybox-w32-fad04fdd12604a46eff62875343515c33e1863c6.tar.gz
busybox-w32-fad04fdd12604a46eff62875343515c33e1863c6.tar.bz2
busybox-w32-fad04fdd12604a46eff62875343515c33e1863c6.zip
More cleanups.
-Erik
Diffstat (limited to 'coreutils/test.c')
-rw-r--r--coreutils/test.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/coreutils/test.c b/coreutils/test.c
index d7b34a6a4..175cb5d05 100644
--- a/coreutils/test.c
+++ b/coreutils/test.c
@@ -372,7 +372,7 @@ filstat(nm, mode)
372 enum token mode; 372 enum token mode;
373{ 373{
374 struct stat s; 374 struct stat s;
375 int i; 375 unsigned int i;
376 376
377 if (mode == FILSYM) { 377 if (mode == FILSYM) {
378#ifdef S_IFLNK 378#ifdef S_IFLNK
@@ -535,7 +535,7 @@ char *path;
535int mode; 535int mode;
536{ 536{
537 struct stat st; 537 struct stat st;
538 int euid = geteuid(); 538 unsigned int euid = geteuid();
539 539
540 if (stat (path, &st) < 0) 540 if (stat (path, &st) < 0)
541 return (-1); 541 return (-1);