Fix warning on Linux

This commit is contained in:
MysterD 2022-03-08 20:06:45 -08:00
parent 1a3b9d1cbf
commit 4356f44866
1 changed files with 1 additions and 1 deletions

View File

@ -152,7 +152,7 @@ void network_receive_download(struct Packet* p) {
}
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;
}