Fixed GCC 4.9 compilation error

src/sound/timiditypp/instrum.cpp:45:26: error: array used as initializer
This commit is contained in:
alexey.lysiuk 2018-02-26 14:00:29 +02:00
parent 4fdf488960
commit 22819e640a

View file

@ -335,7 +335,7 @@ class Instruments
int progbase = 0;
int32_t modify_release = 0;
bool opt_sf_close_each_file = true;
char def_instr_name[256] = "";
char def_instr_name[256] = { '\0' };
SFInsts *sfrecs = nullptr;
SFInsts *current_sfrec = nullptr;