aboutsummaryrefslogtreecommitdiff
path: root/halt.c
diff options
context:
space:
mode:
authorEric Andersen <andersen@codepoet.org>2001-10-18 04:04:34 +0000
committerEric Andersen <andersen@codepoet.org>2001-10-18 04:04:34 +0000
commit11fdb8a4c79752157a8263fbcf583916d5ec0347 (patch)
treea59376401e4f839f9cbd8538bd7caa2d0dd3658f /halt.c
parent1bf25f030777a83ed498914ad65ba3d44b8b3fdc (diff)
downloadbusybox-11fdb8a4c79752157a8263fbcf583916d5ec0347.tar.gz
Fix a nasty bug with variable name shadowing
Diffstat (limited to 'halt.c')
-rw-r--r--halt.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/halt.c b/halt.c
index a6fec021b..d66e28d0e 100644
--- a/halt.c
+++ b/halt.c
@@ -30,7 +30,7 @@ extern int halt_main(int argc, char **argv)
/* don't assume init's pid == 1 */
pid_t *pid = find_pid_by_name("init");
if (!pid || *pid<=0) {
- pid_t *pid = find_pid_by_name("linuxrc");
+ pid = find_pid_by_name("linuxrc");
if (!pid || *pid<=0)
error_msg_and_die("no process killed");
}