64-bit fixes. Gets Debugger fully compiling on x86-64.

This commit is contained in:
Rene Gollent
2012-08-08 19:40:51 -04:00
parent aafb6faf57
commit 74e288401d
3 changed files with 6 additions and 6 deletions
+2 -2
View File
@@ -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;