diff options
author | Denis Vlasenko <vda.linux@googlemail.com> | 2009-02-14 20:58:13 +0000 |
---|---|---|
committer | Denis Vlasenko <vda.linux@googlemail.com> | 2009-02-14 20:58:13 +0000 |
commit | 93b38208d1e7d759b3c8ed8e7eb91c10442033ff (patch) | |
tree | 01ee8fdde054d8d16d059aff461cb74de89fe842 /runit/runsvdir.c | |
parent | 97b954decbbdf55df3b867e238a8832a1104e3d4 (diff) | |
download | busybox-w32-93b38208d1e7d759b3c8ed8e7eb91c10442033ff.tar.gz busybox-w32-93b38208d1e7d759b3c8ed8e7eb91c10442033ff.tar.bz2 busybox-w32-93b38208d1e7d759b3c8ed8e7eb91c10442033ff.zip |
init: fix compile breakage with '# CONFIG_FEATURE_KILL_REMOVED is not set'
runsvdir.c: fix typo in comment
Diffstat (limited to 'runit/runsvdir.c')
-rw-r--r-- | runit/runsvdir.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/runit/runsvdir.c b/runit/runsvdir.c index f67330485..7b054e410 100644 --- a/runit/runsvdir.c +++ b/runit/runsvdir.c | |||
@@ -370,7 +370,7 @@ int runsvdir_main(int argc UNUSED_PARAM, char **argv) | |||
370 | opt_s_argv[1] = utoa(bb_got_signal); | 370 | opt_s_argv[1] = utoa(bb_got_signal); |
371 | pid = spawn(opt_s_argv); | 371 | pid = spawn(opt_s_argv); |
372 | if (pid > 0) { | 372 | if (pid > 0) { |
373 | /* Remebering to wait for _any_ children, | 373 | /* Remembering to wait for _any_ children, |
374 | * not just pid */ | 374 | * not just pid */ |
375 | while (wait(NULL) != pid) | 375 | while (wait(NULL) != pid) |
376 | continue; | 376 | continue; |