mirror of
https://github.com/coop-deluxe/sm64coopdx.git
synced 2025-10-30 08:01:01 +00:00
Fix warning on Linux
This commit is contained in:
parent
5fa3e27aa6
commit
f07353f94d
1 changed files with 1 additions and 1 deletions
|
|
@ -152,7 +152,7 @@ void network_receive_download(struct Packet* p) {
|
||||||
}
|
}
|
||||||
|
|
||||||
if ((offset + chunkSize) > entry->size) {
|
if ((offset + chunkSize) > entry->size) {
|
||||||
LOG_ERROR("Received download of invalid chunk size %u:%llu:%u -- %llu", clientIndex, offset, chunkSize, entry->size);
|
LOG_ERROR("Received download of invalid chunk size %u:%llu:%u -- %llu", clientIndex, (u64)offset, chunkSize, (u64)entry->size);
|
||||||
return;
|
return;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
|
||||||
Loading…
Add table
Reference in a new issue