aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorChristoph Mallon2011-08-06 09:47:51 +0200
committerChristoph Mallon2011-08-07 15:19:07 +0200
commit79729d03e014962cd9bcef263145997eec63ec38 (patch)
tree5e20812323e798cd221b38a754efdab7dd6d5d14
parent84220d2ca05707f22a0242b1745caf0b657237a3 (diff)
downloadscummvm-rg350-79729d03e014962cd9bcef263145997eec63ec38.tar.gz
scummvm-rg350-79729d03e014962cd9bcef263145997eec63ec38.tar.bz2
scummvm-rg350-79729d03e014962cd9bcef263145997eec63ec38.zip
COMMON: Use correct format specifier.
-rw-r--r--common/array.h2
1 files changed, 1 insertions, 1 deletions
diff --git a/common/array.h b/common/array.h
index af1fe574f6..bc378d5233 100644
--- a/common/array.h
+++ b/common/array.h
@@ -274,7 +274,7 @@ protected:
if (capacity) {
_storage = new T[capacity];
if (!_storage)
- ::error("Common::Array: failure to allocate %d bytes", capacity);
+ ::error("Common::Array: failure to allocate %u bytes", capacity);
} else {
_storage = 0;
}