diff options
author | Rob Landley <rob@landley.net> | 2006-02-22 17:01:00 +0000 |
---|---|---|
committer | Rob Landley <rob@landley.net> | 2006-02-22 17:01:00 +0000 |
commit | 0a7c8ef6e220b5f8fff4f2cb0af630255a2a6a58 (patch) | |
tree | f32eb89325299a3abade721ffe149b0e516747c1 /init | |
parent | fb16d5c6aa8aef30d313356b5a83ef0a60114c9a (diff) | |
download | busybox-0a7c8ef6e220b5f8fff4f2cb0af630255a2a6a58.tar.gz |
Patch from Denis Vlasenko to constify things and fix a few typos.
Diffstat (limited to 'init')
-rw-r--r-- | init/halt.c | 6 |
1 files changed, 4 insertions, 2 deletions
diff --git a/init/halt.c b/init/halt.c index 34479742e..38ca38222 100644 --- a/init/halt.c +++ b/init/halt.c @@ -15,9 +15,11 @@ int halt_main(int argc, char *argv[]) { + static const int magic[] = {RB_HALT_SYSTEM, RB_POWER_OFF, RB_AUTOBOOT}; + static const int signals[] = {SIGUSR1, SIGUSR2, SIGTERM}; + char *delay = "hpr"; - int which, flags, magic[] = {RB_HALT_SYSTEM, RB_POWER_OFF, RB_AUTOBOOT}, - signals[] = {SIGUSR1, SIGUSR2, SIGTERM}, rc = 1; + int which, flags, rc = 1; /* Figure out which applet we're running */ for(which=0;delay[which]!=*bb_applet_name;which++); |