Avoid a couple compilation warnings

This commit is contained in:
Pierre Pronchery 2018-02-05 00:57:26 +01:00
parent d05b69b5d7
commit 996326cacb
2 changed files with 4 additions and 0 deletions

View File

@ -163,6 +163,8 @@ static unsigned int _get_value(MixerControlPlugin * radio)
/* radio_get_type */
static String const * _radio_get_type(MixerControlPlugin * radio)
{
(void) radio;
return "radio";
}

View File

@ -162,6 +162,8 @@ static unsigned int _get_value(MixerControlPlugin * set)
/* set_get_type */
static String const * _set_get_type(MixerControlPlugin * set)
{
(void) set;
return "set";
}