storage kit: fix more wrong type of arguments to formatting function
Pointed out by LGTM Change-Id: Iee81983a86cd71714dcedcf58f74bcea59ca619d Reviewed-on: https://review.haiku-os.org/c/haiku/+/4607 Tested-by: Commit checker robot <[email protected]> Reviewed-by: Adrien Destugues <[email protected]>
This commit is contained in:
committed by
Adrien Destugues
parent
d171b8b533
commit
5705d286f6
@@ -990,7 +990,7 @@ ResourceFile::_ReadInfoTable(resource_parse_info& parseInfo)
|
||||
uint32 bytesLeft = (const char*)tableData + dataSize - (const char*)data;
|
||||
if (bytesLeft != 0) {
|
||||
throw Exception(B_IO_ERROR, "Error at the end of the resource info "
|
||||
"table: %lu bytes are remaining.", bytesLeft);
|
||||
"table: %" B_PRIu32 " bytes are remaining.", bytesLeft);
|
||||
}
|
||||
// check, if all items have been initialized
|
||||
for (int32 i = resourceCount - 1; i >= 0; i--) {
|
||||
|
||||
Reference in New Issue
Block a user