mirror of
https://github.com/ZDoom/fluidsynth.git
synced 2024-11-13 00:04:10 +00:00
Fix maybe-uninitialized warning in gcc 9.3
This commit is contained in:
parent
614fcab9cc
commit
74ccd9cb9d
1 changed files with 1 additions and 1 deletions
|
@ -3556,7 +3556,7 @@ enum
|
||||||
int fluid_handle_player_cde(void *data, int ac, char **av, fluid_ostream_t out, int cmd)
|
int fluid_handle_player_cde(void *data, int ac, char **av, fluid_ostream_t out, int cmd)
|
||||||
{
|
{
|
||||||
FLUID_ENTRY_COMMAND(data);
|
FLUID_ENTRY_COMMAND(data);
|
||||||
int arg, was_running;
|
int arg = 0, was_running;
|
||||||
int seek = -1; /* current seek position in tick */
|
int seek = -1; /* current seek position in tick */
|
||||||
|
|
||||||
/* commands name table */
|
/* commands name table */
|
||||||
|
|
Loading…
Reference in a new issue