aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--engines/sci/sci_memory.cpp2
1 files changed, 1 insertions, 1 deletions
diff --git a/engines/sci/sci_memory.cpp b/engines/sci/sci_memory.cpp
index d8e49a5fe9..203716edcf 100644
--- a/engines/sci/sci_memory.cpp
+++ b/engines/sci/sci_memory.cpp
@@ -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);