Fix broken debug output.
This commit is contained in:
@@ -150,8 +150,8 @@ Array<Element>::Remove(int32 index, int32 count)
|
|||||||
if (index < 0 || count < 0 || index + count > fSize) {
|
if (index < 0 || count < 0 || index + count > fSize) {
|
||||||
#if DEBUG
|
#if DEBUG
|
||||||
char buffer[128];
|
char buffer[128];
|
||||||
snprintf(buffer, sizeof(buffer), "Array::Remove(): index: %d, "
|
snprintf(buffer, sizeof(buffer), "Array::Remove(): index: %ld, "
|
||||||
"count: %d, size: %d", index, count, fSize);
|
"count: %ld, size: %ld", index, count, fSize);
|
||||||
debugger(buffer);
|
debugger(buffer);
|
||||||
#endif
|
#endif
|
||||||
return false;
|
return false;
|
||||||
|
|||||||
Reference in New Issue
Block a user