Merge pull request #14 from zeux/master

Fix MSVC /W4 warning
This commit is contained in:
Richard Knight 2020-02-08 09:10:22 +00:00 committed by GitHub
commit ca31ba8df4
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23

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);
}