aboutsummaryrefslogtreecommitdiff
path: root/src/rc/start-stop-daemon.c
diff options
context:
space:
mode:
authorBenda Xu <heroxbd@gentoo.org>2017-01-04 17:18:35 -0600
committerWilliam Hubbs <w.d.hubbs@gmail.com>2017-01-04 17:18:35 -0600
commitc304522131a795cf882444b5f94e81db4baf65b3 (patch)
tree201e323770ea0ae9ed2b19dc8277c312dde4ed80 /src/rc/start-stop-daemon.c
parent92325b44ba58a7ca04d88ae8ca202b402b032b43 (diff)
Clean up warnings that can use the _unused macro
X-Gentoo-Bug: 604666 X-Gentoo-Bug-URL: https://bugs.gentoo.org/show_bug.cgi?id=604666
Diffstat (limited to 'src/rc/start-stop-daemon.c')
-rw-r--r--src/rc/start-stop-daemon.c5
1 files changed, 4 insertions, 1 deletions
diff --git a/src/rc/start-stop-daemon.c b/src/rc/start-stop-daemon.c
index eb5b4f7a..b1c6e73d 100644
--- a/src/rc/start-stop-daemon.c
+++ b/src/rc/start-stop-daemon.c
@@ -64,6 +64,7 @@ static struct pam_conv conv = { NULL, NULL};
#include "rc.h"
#include "rc-misc.h"
#include "_usage.h"
+#include "helpers.h"
const char *applet = NULL;
const char *extraopts = NULL;
@@ -153,7 +154,9 @@ extern char **environ;
# define SYS_ioprio_set __NR_ioprio_set
#endif
#if !defined(__DragonFly__)
-static inline int ioprio_set(int which, int who, int ioprio)
+static inline int ioprio_set(int which _unused,
+ int who _unused,
+ int ioprio _unused)
{
#ifdef SYS_ioprio_set
return syscall(SYS_ioprio_set, which, who, ioprio);