diff options
author | Denis Vlasenko <vda.linux@googlemail.com> | 2006-09-27 23:31:08 +0000 |
---|---|---|
committer | Denis Vlasenko <vda.linux@googlemail.com> | 2006-09-27 23:31:08 +0000 |
commit | ce97960a6e7da4d9fc7a003c9138aec5e4e55a96 (patch) | |
tree | c85ed57fad4e98e833f16d5657efce53acc79895 /init | |
parent | c16bd212e341598452b7885d9e4ac2064f417673 (diff) | |
download | busybox-ce97960a6e7da4d9fc7a003c9138aec5e4e55a96.tar.gz |
usage.h: remove ugly tricks. We have USE_FEATURE_xxx now.
Few bugs are now exposed...
Diffstat (limited to 'init')
-rw-r--r-- | init/init.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/init/init.c b/init/init.c index 607a1f3e0..d7d14a2d5 100644 --- a/init/init.c +++ b/init/init.c @@ -1125,7 +1125,7 @@ int init_main(int argc, char **argv) } } /* see if anyone else is waiting to be reaped */ - wpid = waitpid (-1, NULL, WNOHANG); + wpid = waitpid(-1, NULL, WNOHANG); } } } |