mirror of
https://github.com/ZDoom/fluidsynth.git
synced 2025-04-18 05:31:02 +00:00
Fixup previous commit
This commit is contained in:
parent
557fe5d45e
commit
7ef21ceaf7
1 changed files with 2 additions and 2 deletions
|
@ -165,10 +165,10 @@ typedef int fluid_socket_t;
|
|||
|
||||
#if SUPPORTS_VLA
|
||||
# define FLUID_DECLARE_VLA(_type, _name, _len) \
|
||||
_type _name[_len]
|
||||
_type _name[_len]
|
||||
#else
|
||||
# define FLUID_DECLARE_VLA(_type, _name, _len) \
|
||||
_type* _name = alloca(sizeof(_type) * (_len))
|
||||
_type* _name = g_newa(_type, (_len))
|
||||
#endif
|
||||
|
||||
|
||||
|
|
Loading…
Reference in a new issue