Welcome to mirror list, hosted at ThFree Co, Russian Federation.

git.busybox.net/busybox.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
Diffstat (limited to 'poweroff.c')
-rw-r--r--poweroff.c8
1 files changed, 4 insertions, 4 deletions
diff --git a/poweroff.c b/poweroff.c
index 405ca3fe2..7f9abf14a 100644
--- a/poweroff.c
+++ b/poweroff.c
@@ -1,3 +1,4 @@
+/* vi: set sw=4 ts=4: */
/*
* Mini poweroff implementation for busybox
*
@@ -23,9 +24,8 @@
#include "internal.h"
#include <signal.h>
-extern int
-poweroff_main(int argc, char ** argv)
+extern int poweroff_main(int argc, char **argv)
{
- /* don't assume init's pid == 1 */
- exit( kill(findInitPid(), SIGUSR2));
+ /* don't assume init's pid == 1 */
+ exit(kill(findInitPid(), SIGUSR2));
}