diff options
author | Michael I. Bushnell <mib@gnu.org> | 1996-07-03 18:46:36 +0000 |
---|---|---|
committer | Michael I. Bushnell <mib@gnu.org> | 1996-07-03 18:46:36 +0000 |
commit | 6d3e77cf7eb22a25da0c69cf189194ad61f2fad4 (patch) | |
tree | defce9ba14b125c1d8134b35ce05057d19eebff2 /init | |
parent | e1cf8027cf8a7ec532c5ca87775a2ddc9038bc81 (diff) |
(process_signal) [case SIGCHLD]: Correctly place `break' *outside* of
for loop.
Diffstat (limited to 'init')
-rw-r--r-- | init/init.c | 3 |
1 files changed, 1 insertions, 2 deletions
diff --git a/init/init.c b/init/init.c index ec3e8d03..d62451a6 100644 --- a/init/init.c +++ b/init/init.c @@ -1351,9 +1351,8 @@ killing it and going to single user mode", } else if (system_state == MULTI) restart_terminal (pid); - - break; } + break; } default: break; |