diff options
author | Eric Andersen <andersen@codepoet.org> | 2004-04-12 19:21:54 +0000 |
---|---|---|
committer | Eric Andersen <andersen@codepoet.org> | 2004-04-12 19:21:54 +0000 |
commit | 87812dc3b07eb4c1f69432133883d2dd5b771705 (patch) | |
tree | 3434fbfff048fac8b643b7a7d4a6c64edda602ec /init | |
parent | 4e19fa9b644065c112da3472ab6ce3a938cc1ac8 (diff) | |
download | busybox-w32-87812dc3b07eb4c1f69432133883d2dd5b771705.tar.gz busybox-w32-87812dc3b07eb4c1f69432133883d2dd5b771705.tar.bz2 busybox-w32-87812dc3b07eb4c1f69432133883d2dd5b771705.zip |
Silly me
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 fd1443e44..588e4e75c 100644 --- a/init/init.c +++ b/init/init.c | |||
@@ -1160,7 +1160,7 @@ extern int init_main(int argc, char **argv) | |||
1160 | 1160 | ||
1161 | /* Wait for a child process to exit */ | 1161 | /* Wait for a child process to exit */ |
1162 | wpid = wait(&status); | 1162 | wpid = wait(&status); |
1163 | while (init_action_list && wpid > 0) { | 1163 | while (wpid > 0) { |
1164 | /* Find out who died and clean up their corpse */ | 1164 | /* Find out who died and clean up their corpse */ |
1165 | for (a = init_action_list; a; a = a->next) { | 1165 | for (a = init_action_list; a; a = a->next) { |
1166 | if (a->pid == wpid) { | 1166 | if (a->pid == wpid) { |