fix wrong printf format

This commit is contained in:
derselbst 2017-10-28 13:36:32 +02:00
parent 642b9750b2
commit 8f83592b6e

View file

@ -243,7 +243,7 @@ new_fluid_alsa_audio_driver2(fluid_settings_t* settings,
if (tmp != sample_rate) { if (tmp != sample_rate) {
/* There's currently no way to change the sampling rate of the /* There's currently no way to change the sampling rate of the
synthesizer after it's been created. */ synthesizer after it's been created. */
FLUID_LOG(FLUID_WARN, "Requested sample rate of %d, got %d instead, " FLUID_LOG(FLUID_WARN, "Requested sample rate of %u, got %u instead, "
"synthesizer likely out of tune!", (unsigned int) sample_rate, tmp); "synthesizer likely out of tune!", (unsigned int) sample_rate, tmp);
} }