Static-ify a variable. make du work with all the human-readable variants
[oweals/busybox.git] / reboot.c
index 354286d4764e086672715a8efa5c93eeb9bce3d7..3e5f2382c1cf363e1205e5452f4fa08598c21486 100644 (file)
--- a/reboot.c
+++ b/reboot.c
@@ -28,7 +28,7 @@ extern int reboot_main(int argc, char **argv)
 {
 #ifdef BB_FEATURE_LINUXRC
        /* don't assume init's pid == 1 */
-       return(kill(*(findPidByName("init")), SIGINT));
+       return(kill(*(find_pid_by_name("init")), SIGINT));
 #else
        return(kill(1, SIGINT));
 #endif