64-bit fixes. Gets Debugger fully compiling on x86-64.
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 DEBUG
|
||||
char buffer[128];
|
||||
snprintf(buffer, sizeof(buffer), "Array::Remove(): index: %ld, "
|
||||
"count: %ld, size: %ld", index, count, fSize);
|
||||
snprintf(buffer, sizeof(buffer), "Array::Remove(): index: %" B_PRId32
|
||||
", count: %" B_PRId32 ", size: %" B_PRId32, index, count, fSize);
|
||||
debugger(buffer);
|
||||
#endif
|
||||
return false;
|
||||
|
||||
Reference in New Issue
Block a user