Code cleanups

on behalf of Lebedev, see issue 1279
This commit is contained in:
Oliver Duis
2012-03-16 15:22:27 +01:00
parent d520543462
commit 2a507c8615
9 changed files with 62 additions and 62 deletions

View File

@@ -262,7 +262,7 @@ public:
array2D<T> & operator[](int index) {
if (static_cast<size_t>(index) >= num) {
printf("index %0u is out of range[0..%0u]", index, num - 1);
printf("index %0u is out of range[0..%0lu]", index, num - 1);
raise( SIGSEGV);
}
return list[index];