Use appropriate format macros in ERROR macro

(hopefully fixing x86_64 build)
This commit is contained in:
John Scipione 2016-08-30 15:43:23 -07:00
parent 5cf9407148
commit 22fa1929e0

View File

@ -263,8 +263,8 @@ device_ioctl(void* data, uint32 op, void* buffer, size_t bufferLength)
}
default:
ERROR("ioctl() unknown message %ld (length = %ld)\n", op,
bufferLength);
ERROR("ioctl() unknown message %" B_PRIu32 " (length = %"
B_PRIuSIZE ")\n", op, bufferLength);
break;
}