aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-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;
}