warn correction

gcc warning: unused parameter removed for macro STBTT_free
This commit is contained in:
johan 2014-06-23 01:17:43 +02:00
parent b000f920ac
commit 816ea35435

View File

@ -378,7 +378,7 @@ int main(int arg, char **argv)
#ifndef STBTT_malloc
#include <stdlib.h>
#define STBTT_malloc(x,u) ((void)(u),malloc(x))
#define STBTT_free(x,u) free(x)
#define STBTT_free(x,u) ((void)(u),free(x))
#endif
#ifndef STBTT_assert