From 8f83592b6edf1e279d2e4020eae3fb896b860ff5 Mon Sep 17 00:00:00 2001 From: derselbst Date: Sat, 28 Oct 2017 13:36:32 +0200 Subject: [PATCH] fix wrong printf format --- src/drivers/fluid_alsa.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/drivers/fluid_alsa.c b/src/drivers/fluid_alsa.c index 6da31e7a..1e88dfc4 100644 --- a/src/drivers/fluid_alsa.c +++ b/src/drivers/fluid_alsa.c @@ -243,7 +243,7 @@ new_fluid_alsa_audio_driver2(fluid_settings_t* settings, if (tmp != sample_rate) { /* There's currently no way to change the sampling rate of the 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); }