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:
Filippos Karapetis 2009-03-19 22:06:46 +00:00
parent e59b4587b7
commit 348d48abe5

View File

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