mirror of
https://github.com/yquake2/yquake2remaster.git
synced 2025-01-19 07:51:03 +00:00
Use Windows compatible format specifiers.
This commit is contained in:
parent
a0a8521497
commit
6bec90bbdd
1 changed files with 1 additions and 1 deletions
|
@ -125,7 +125,7 @@ static int CL_HTTP_CurlProgressCB(void* ptr, CL_Progresstype total /* unused */,
|
|||
{
|
||||
dlhandle_t *dl = (dlhandle_t *)ptr;
|
||||
dl->fileDownloadedSize = (size_t)now;
|
||||
Com_DPrintf("CL_HTTP_CurlProgressCB: Downloaded %zu/%zu\n", dl->fileDownloadedSize, dl->fileSize);
|
||||
Com_DPrintf("CL_HTTP_CurlProgressCB: Downloaded " YQ2_COM_PRIdS "/" YQ2_COM_PRIdS "\n", dl->fileDownloadedSize, dl->fileSize);
|
||||
return 0;
|
||||
}
|
||||
|
||||
|
|
Loading…
Reference in a new issue