From: Benjamin ROBIN Date: Mon, 29 Feb 2016 14:07:09 +0000 (+0100) Subject: systemctl: Fix warn: action_to_runlevel() is not used X-Git-Tag: v230~298^2 X-Git-Url: http://git.ipfire.org/gitweb.cgi?a=commitdiff_plain;h=d2e796739d731c41b8206dbd61706dd5bdedd926;p=thirdparty%2Fsystemd.git systemctl: Fix warn: action_to_runlevel() is not used If HAVE_SYSV_COMPAT is not defined: ‘action_to_runlevel’ defined but not used --- diff --git a/src/systemctl/systemctl.c b/src/systemctl/systemctl.c index a4491692a92..11e26ce7373 100644 --- a/src/systemctl/systemctl.c +++ b/src/systemctl/systemctl.c @@ -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