BACKENDS: CURL: Fix -Wformat warning

This commit is contained in:
Donovan Watteau 2023-03-09 15:43:52 +01:00
parent ae2b3181f3
commit 4c83c15a11

View File

@ -159,7 +159,7 @@ size_t CurlSocket::recv(void *data, int maxLen) {
return nread;
}
debug(1, "libcurl: Received %lu bytes", (uint64)nread);
debug(1, "libcurl: Received %llu bytes", (unsigned long long)nread);
return nread;
}