diff options
author | Johannes Schickel | 2009-03-19 22:51:42 +0000 |
---|---|---|
committer | Johannes Schickel | 2009-03-19 22:51:42 +0000 |
commit | b9656ae391db0e637a1c1ae2ebe19397ef849501 (patch) | |
tree | 51426e3b29e8fec8bdc1641182bf03c3884546b4 /engines | |
parent | f81e5747bdc3742dd081a3dee395cd4aa98cbe85 (diff) | |
download | scummvm-rg350-b9656ae391db0e637a1c1ae2ebe19397ef849501.tar.gz scummvm-rg350-b9656ae391db0e637a1c1ae2ebe19397ef849501.tar.bz2 scummvm-rg350-b9656ae391db0e637a1c1ae2ebe19397ef849501.zip |
Fix warning.
svn-id: r39547
Diffstat (limited to 'engines')
-rw-r--r-- | engines/sci/sci_memory.cpp | 2 |
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); |