Merge pull request #15 from nodj/master

minor warn correction
This commit is contained in:
nothings 2014-07-07 16:20:34 -07:00
commit 0cc827fe2a
1 changed files with 1 additions and 1 deletions

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