diff --git a/fast_obj.h b/fast_obj.h index 213778d..02a9202 100644 --- a/fast_obj.h +++ b/fast_obj.h @@ -169,7 +169,7 @@ void* memory_realloc(void* ptr, size_t bytes) static void memory_dealloc(void* ptr) { - free(ptr); + FAST_OBJ_FREE(ptr); }