aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--miscutils/runlevel.c7
1 files changed, 3 insertions, 4 deletions
diff --git a/miscutils/runlevel.c b/miscutils/runlevel.c
index 6e10d9cbb..83b5a77d4 100644
--- a/miscutils/runlevel.c
+++ b/miscutils/runlevel.c
@@ -11,17 +11,16 @@
11 * 11 *
12 * initially busyboxified by Bernhard Reutner-Fischer 12 * initially busyboxified by Bernhard Reutner-Fischer
13 */ 13 */
14
15#include <utmp.h>
16#include "libbb.h" 14#include "libbb.h"
15#include <utmp.h>
17 16
18int runlevel_main(int argc, char **argv) MAIN_EXTERNALLY_VISIBLE; 17int runlevel_main(int argc, char **argv) MAIN_EXTERNALLY_VISIBLE;
19int runlevel_main(int argc, char **argv) 18int runlevel_main(int argc UNUSED_PARAM, char **argv)
20{ 19{
21 struct utmp *ut; 20 struct utmp *ut;
22 char prev; 21 char prev;
23 22
24 if (argc > 1) utmpname(argv[1]); 23 if (argv[1]) utmpname(argv[1]);
25 24
26 setutent(); 25 setutent();
27 while ((ut = getutent()) != NULL) { 26 while ((ut = getutent()) != NULL) {