aboutsummaryrefslogtreecommitdiff
path: root/engines/sci
diff options
context:
space:
mode:
authorJohannes Schickel2009-03-19 22:51:42 +0000
committerJohannes Schickel2009-03-19 22:51:42 +0000
commitb9656ae391db0e637a1c1ae2ebe19397ef849501 (patch)
tree51426e3b29e8fec8bdc1641182bf03c3884546b4 /engines/sci
parentf81e5747bdc3742dd081a3dee395cd4aa98cbe85 (diff)
downloadscummvm-rg350-b9656ae391db0e637a1c1ae2ebe19397ef849501.tar.gz
scummvm-rg350-b9656ae391db0e637a1c1ae2ebe19397ef849501.tar.bz2
scummvm-rg350-b9656ae391db0e637a1c1ae2ebe19397ef849501.zip
Fix warning.
svn-id: r39547
Diffstat (limited to 'engines/sci')
-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 203716edcf..7fa3a5d4aa 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 %u bytes failed [%s (%s) : %u]", (uint32)size, filename, funcname, linenum);\
+ error("Memory allocation of %u bytes failed [%s (%s) : %u]", (uint)(size), filename, funcname, linenum);\
}\
} while (0);