fix compile

This commit is contained in:
Sean Barrett 2014-09-10 15:11:35 -07:00
parent 118f28557e
commit 4e580cf9ed

View File

@ -45,7 +45,7 @@ void* stbir_malloc(void* context, size_t size)
void stbir_free(void* context, void* memory)
{
if (!context)
return free(memory);
free(memory);
}
void stbir_progress(float p)