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/librc.c | |
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/librc.c')
-rw-r--r-- | src/librc/librc.c | 5 |
1 files changed, 3 insertions, 2 deletions
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) { |