diff options
Diffstat (limited to 'halt.c')
-rw-r--r-- | halt.c | 2 |
1 files changed, 1 insertions, 1 deletions
@@ -30,7 +30,7 @@ extern int halt_main(int argc, char **argv) | |||
30 | /* don't assume init's pid == 1 */ | 30 | /* don't assume init's pid == 1 */ |
31 | pid_t *pid = find_pid_by_name("init"); | 31 | pid_t *pid = find_pid_by_name("init"); |
32 | if (!pid || *pid<=0) { | 32 | if (!pid || *pid<=0) { |
33 | pid_t *pid = find_pid_by_name("linuxrc"); | 33 | pid = find_pid_by_name("linuxrc"); |
34 | if (!pid || *pid<=0) | 34 | if (!pid || *pid<=0) |
35 | error_msg_and_die("no process killed"); | 35 | error_msg_and_die("no process killed"); |
36 | } | 36 | } |