mirror of
https://github.com/libretro/scummvm.git
synced 2024-12-04 08:17:40 +00:00
COMMON: Use correct format specifier.
This commit is contained in:
parent
84220d2ca0
commit
79729d03e0
@ -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;
|
||||
}
|
||||
|
Loading…
Reference in New Issue
Block a user