Fix missing initializer warnings on gcc 9.3

This commit is contained in:
Marcus Weseloh 2021-04-10 12:04:05 +02:00
parent ebbaff32bf
commit 614fcab9cc

View file

@ -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);