gmio_core: fix compilation warning in gmio_buffer_alloca()

This commit is contained in:
Hugues Delorme 2015-04-01 15:39:53 +02:00
parent 76ee571cd5
commit c0db993f05

View File

@ -75,6 +75,7 @@ gmio_buffer_t gmio_buffer_alloca(size_t size)
return gmio_buffer(_alloca(size), size, NULL);
# endif /* _MSC_VER */
#else
GMIO_UNUSED(size);
return gmio_buffer_null();
#endif
}