Refactor config_get_default_audio_resampler

This commit is contained in:
twinaphex 2014-08-15 18:22:26 +02:00
parent 49e9e97f38
commit 5f247275e7

View File

@ -87,8 +87,9 @@ const char *config_get_default_audio_resampler(void)
case AUDIO_RESAMPLER_CC:
return "cc";
case AUDIO_RESAMPLER_SINC:
default:
return "sinc";
default:
return NULL;
}
}