From 097183d088e50faca96bc90c922b07f46f960dd0 Mon Sep 17 00:00:00 2001 From: Pierre Pronchery Date: Mon, 5 Feb 2018 00:47:00 +0100 Subject: [PATCH] Avoid a couple compilation warnings --- src/controls/channels.c | 2 ++ src/controls/mute.c | 2 ++ 2 files changed, 4 insertions(+) diff --git a/src/controls/channels.c b/src/controls/channels.c index a8dcd3f..78789dd 100644 --- a/src/controls/channels.c +++ b/src/controls/channels.c @@ -280,6 +280,8 @@ static gboolean _get_mute(MixerControlPlugin * channels) /* channels_get_type */ static String const * _channels_get_type(MixerControlPlugin * channels) { + (void) channels; + return "channels"; } diff --git a/src/controls/mute.c b/src/controls/mute.c index c65925d..7548fee 100644 --- a/src/controls/mute.c +++ b/src/controls/mute.c @@ -168,6 +168,8 @@ static int _mute_get(MixerControlPlugin * mute, va_list properties) /* mute_get_type */ static String const * _mute_get_type(MixerControlPlugin * mute) { + (void) mute; + return "mute"; }