Merge pull request #2767 from benjarobin/fix-warn

systemctl: Fix warn: action_to_runlevel() is not used
This commit is contained in:
Zbigniew Jędrzejewski-Szmek 2016-02-29 20:45:42 -05:00
commit 97a437d24c

View file

@ -7263,6 +7263,7 @@ static int parse_argv(int argc, char *argv[]) {
return systemctl_parse_argv(argc, argv);
}
#ifdef HAVE_SYSV_COMPAT
_pure_ static int action_to_runlevel(void) {
static const char table[_ACTION_MAX] = {
@ -7280,6 +7281,7 @@ _pure_ static int action_to_runlevel(void) {
return table[arg_action];
}
#endif
static int talk_initctl(void) {
#ifdef HAVE_SYSV_COMPAT