Fix format string problem in I_Realloc
This commit is contained in:
parent
30b05089f5
commit
a94fcfe01d
1 changed files with 1 additions and 1 deletions
|
|
@ -335,7 +335,7 @@ void *I_Realloc(void *ptr, size_t size)
|
|||
|
||||
if (size != 0 && new_ptr == NULL)
|
||||
{
|
||||
I_Error ("I_Realloc: failed on reallocation of %i bytes", size);
|
||||
I_Error ("I_Realloc: failed on reallocation of %" PRIuPTR " bytes", size);
|
||||
}
|
||||
|
||||
return new_ptr;
|
||||
|
|
|
|||
Loading…
Reference in a new issue