From c304522131a795cf882444b5f94e81db4baf65b3 Mon Sep 17 00:00:00 2001 From: Benda Xu Date: Wed, 4 Jan 2017 17:18:35 -0600 Subject: 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 --- src/librc/librc-misc.c | 3 ++- src/librc/librc.c | 5 +++-- 2 files changed, 5 insertions(+), 3 deletions(-) (limited to 'src/librc') 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 #ifdef __FreeBSD__ # include #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) { -- cgit v1.2.3