diff options
author | Christoph Mallon | 2011-08-06 09:47:51 +0200 |
---|---|---|
committer | Christoph Mallon | 2011-08-07 15:19:07 +0200 |
commit | 79729d03e014962cd9bcef263145997eec63ec38 (patch) | |
tree | 5e20812323e798cd221b38a754efdab7dd6d5d14 | |
parent | 84220d2ca05707f22a0242b1745caf0b657237a3 (diff) | |
download | scummvm-rg350-79729d03e014962cd9bcef263145997eec63ec38.tar.gz scummvm-rg350-79729d03e014962cd9bcef263145997eec63ec38.tar.bz2 scummvm-rg350-79729d03e014962cd9bcef263145997eec63ec38.zip |
COMMON: Use correct format specifier.
-rw-r--r-- | common/array.h | 2 |
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; } |