diff options
author | Benda Xu <heroxbd@gentoo.org> | 2017-01-04 17:18:35 -0600 |
---|---|---|
committer | William Hubbs <w.d.hubbs@gmail.com> | 2017-01-04 17:18:35 -0600 |
commit | c304522131a795cf882444b5f94e81db4baf65b3 (patch) | |
tree | 201e323770ea0ae9ed2b19dc8277c312dde4ed80 /src/librc | |
parent | 92325b44ba58a7ca04d88ae8ca202b402b032b43 (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/librc')
-rw-r--r-- | src/librc/librc-misc.c | 3 | ||||
-rw-r--r-- | src/librc/librc.c | 5 |
2 files changed, 5 insertions, 3 deletions
diff --git a/src/librc/librc-misc.c b/src/librc/librc-misc.c index 45bdb7ae..9d514bcd 100644 --- a/src/librc/librc-misc.c +++ b/src/librc/librc-misc.c @@ -19,6 +19,7 @@ #include "queue.h" #include "librc.h" +#include "helpers.h" bool rc_yesno(const char *value) @@ -118,7 +119,7 @@ rc_getline(char **line, size_t *len, FILE *fp) librc_hidden_def(rc_getline) char * -rc_proc_getent(const char *ent) +rc_proc_getent(const char *ent _unused) { #ifdef __linux__ FILE *fp; diff --git a/src/librc/librc.c b/src/librc/librc.c index 3d3277db..84c76b5a 100644 --- a/src/librc/librc.c +++ b/src/librc/librc.c @@ -19,6 +19,7 @@ const char librc_copyright[] = "Copyright (c) 2007-2008 Roy Marples"; #include "queue.h" #include "librc.h" +#include <helpers.h> #ifdef __FreeBSD__ # include <sys/sysctl.h> #endif @@ -232,7 +233,7 @@ detect_prefix(const char *systype) } static const char * -detect_container(const char *systype) +detect_container(const char *systype _unused) { #ifdef __FreeBSD__ if (systype) { @@ -296,7 +297,7 @@ detect_container(const char *systype) } static const char * -detect_vm(const char *systype) +detect_vm(const char *systype _unused) { #ifdef __NetBSD__ if (systype) { |