Fix MSVC /W4 warning

Conversion from size_t to unsigned int is lossy.
This commit is contained in:
Arseny Kapoulkine 2020-02-07 20:45:58 -08:00
parent 74e8dc9e07
commit 30348b561a

View file

@ -203,7 +203,7 @@ double POWER_10_NEG[MAX_POWER] =
};
static void* memory_realloc(void* ptr, fastObjUInt bytes)
static void* memory_realloc(void* ptr, size_t bytes)
{
return FAST_OBJ_REALLOC(ptr, bytes);
}