From 79729d03e014962cd9bcef263145997eec63ec38 Mon Sep 17 00:00:00 2001 From: Christoph Mallon Date: Sat, 6 Aug 2011 09:47:51 +0200 Subject: COMMON: Use correct format specifier. --- common/array.h | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) 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; } -- cgit v1.2.3