mirror of
https://github.com/ZDoom/fluidsynth.git
synced 2024-11-10 15:01:40 +00:00
Fixed sample rate warning message
This commit is contained in:
parent
9ca6718553
commit
2c1b6570e6
1 changed files with 1 additions and 1 deletions
|
@ -247,7 +247,7 @@ new_fluid_alsa_audio_driver2(fluid_settings_t* settings,
|
|||
/* 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, "
|
||||
"synthesizer likely out of tune!", sample_rate, tmp);
|
||||
"synthesizer likely out of tune!", (unsigned int) sample_rate, tmp);
|
||||
}
|
||||
|
||||
uframes = period_size;
|
||||
|
|
Loading…
Reference in a new issue