mirror of
https://github.com/ZDoom/fluidsynth.git
synced 2025-01-31 13:40:35 +00:00
Don't warn when parsing config files
When fluid_shell is called from fluid_source(), is is currently printing this message: Received EOF while reading commands, exiting the shell. Suppress it.
This commit is contained in:
parent
3d805e9a03
commit
4e8f570d32
1 changed files with 4 additions and 1 deletions
|
@ -539,7 +539,10 @@ fluid_shell_run(void *data)
|
|||
|
||||
if(n == 0)
|
||||
{
|
||||
FLUID_LOG(FLUID_INFO, "Received EOF while reading commands, exiting the shell.");
|
||||
if(shell->settings)
|
||||
{
|
||||
FLUID_LOG(FLUID_INFO, "Received EOF while reading commands, exiting the shell.");
|
||||
}
|
||||
break;
|
||||
}
|
||||
}
|
||||
|
|
Loading…
Reference in a new issue