Fixup previous commit

This commit is contained in:
David Henningsson 2010-07-15 19:07:28 +00:00
parent 557fe5d45e
commit 7ef21ceaf7
1 changed files with 2 additions and 2 deletions

View File

@ -168,7 +168,7 @@ typedef int fluid_socket_t;
_type _name[_len]
#else
# define FLUID_DECLARE_VLA(_type, _name, _len) \
_type* _name = alloca(sizeof(_type) * (_len))
_type* _name = g_newa(_type, (_len))
#endif