mirror of
https://github.com/libretro/scummvm.git
synced 2024-12-22 09:49:11 +00:00
Hopefully, this fixes the warnings thrown when attempting to print the "size" variable (which is of type type_t)
svn-id: r39543
This commit is contained in:
parent
e59b4587b7
commit
348d48abe5
@ -52,7 +52,7 @@ do {\
|
||||
\
|
||||
if (res == NULL) {\
|
||||
/* exit immediately */\
|
||||
error("Memory allocation of %lu bytes failed [%s (%s) : %u]", size, filename, funcname, linenum);\
|
||||
error("Memory allocation of %u bytes failed [%s (%s) : %u]", (uint32)size, filename, funcname, linenum);\
|
||||
}\
|
||||
} while (0);
|
||||
|
||||
|
Loading…
Reference in New Issue
Block a user