mirror of
https://github.com/raysan5/raylib.git
synced 2025-09-07 20:08:14 +00:00
REVIEWED: Data type to unsigned
This commit is contained in:
@@ -160,14 +160,14 @@ void TraceLog(int logType, const char *text, ...)
|
||||
|
||||
// Internal memory allocator
|
||||
// NOTE: Initializes to zero by default
|
||||
void *MemAlloc(int size)
|
||||
void *MemAlloc(unsigned int size)
|
||||
{
|
||||
void *ptr = RL_CALLOC(size, 1);
|
||||
return ptr;
|
||||
}
|
||||
|
||||
// Internal memory reallocator
|
||||
void *MemRealloc(void *ptr, int size)
|
||||
void *MemRealloc(void *ptr, unsigned int size)
|
||||
{
|
||||
void *ret = RL_REALLOC(ptr, size);
|
||||
return ret;
|
||||
|
Reference in New Issue
Block a user