diff options
author | Manuel Novoa III <mjn3@codepoet.org> | 2003-03-19 09:42:02 +0000 |
---|---|---|
committer | Manuel Novoa III <mjn3@codepoet.org> | 2003-03-19 09:42:02 +0000 |
commit | 4eff18189a5ec3d474709dd73698ff5dcbc603c6 (patch) | |
tree | 31437c2d09e30fdb107cd256208041d05bb1429d /coreutils/chgrp.c | |
parent | cad5364599eb5062d59e0c397ed638ddd61a8d5d (diff) | |
download | busybox-w32-4eff18189a5ec3d474709dd73698ff5dcbc603c6.tar.gz busybox-w32-4eff18189a5ec3d474709dd73698ff5dcbc603c6.tar.bz2 busybox-w32-4eff18189a5ec3d474709dd73698ff5dcbc603c6.zip |
Things my compiler didn't catch...
Diffstat (limited to 'coreutils/chgrp.c')
-rw-r--r-- | coreutils/chgrp.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/coreutils/chgrp.c b/coreutils/chgrp.c index f5e5d29f1..ac3e81ad9 100644 --- a/coreutils/chgrp.c +++ b/coreutils/chgrp.c | |||
@@ -47,7 +47,7 @@ static int fileAction(const char *fileName, struct stat *statbuf, void* junk) | |||
47 | int chgrp_main(int argc, char **argv) | 47 | int chgrp_main(int argc, char **argv) |
48 | { | 48 | { |
49 | long gid; | 49 | long gid; |
50 | int recursiveFlag;; | 50 | int recursiveFlag; |
51 | int retval = EXIT_SUCCESS; | 51 | int retval = EXIT_SUCCESS; |
52 | char *p; | 52 | char *p; |
53 | 53 | ||