Avoid a couple compilation warnings

This commit is contained in:
Pierre Pronchery 2018-02-05 00:47:00 +01:00
parent c80f128b5a
commit 097183d088
2 changed files with 4 additions and 0 deletions

View File

@ -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";
}

View File

@ -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";
}