mirror of
https://github.com/ZDoom/fluidsynth.git
synced 2025-04-09 01:01:53 +00:00
Merge pull request #834 from FluidSynth/fix-gcc-warnings
Fix two gcc warnings
This commit is contained in:
commit
1eda0ae863
1 changed files with 5 additions and 2 deletions
|
@ -1241,7 +1241,10 @@ fluid_handle_reverb_command(void *data, int ac, char **av, fluid_ostream_t out,
|
|||
/* name and min/max values table */
|
||||
static struct value values[FLUID_REVERB_PARAM_LAST] =
|
||||
{
|
||||
{"room size"}, {"damp"}, {"width"}, {"level"}
|
||||
{"room size", 0, 0},
|
||||
{"damp", 0, 0},
|
||||
{"width", 0, 0},
|
||||
{"level", 0, 0}
|
||||
};
|
||||
|
||||
FLUID_ENTRY_COMMAND(data);
|
||||
|
@ -3553,7 +3556,7 @@ enum
|
|||
int fluid_handle_player_cde(void *data, int ac, char **av, fluid_ostream_t out, int cmd)
|
||||
{
|
||||
FLUID_ENTRY_COMMAND(data);
|
||||
int arg, was_running;
|
||||
int arg = 0, was_running;
|
||||
int seek = -1; /* current seek position in tick */
|
||||
|
||||
/* commands name table */
|
||||
|
|
Loading…
Reference in a new issue