COMMON: Use correct format specifier.

This commit is contained in:
Christoph Mallon 2011-08-06 09:47:51 +02:00
parent 84220d2ca0
commit 79729d03e0

View File

@ -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;
}