diff --git a/backends/networking/curl/socket.cpp b/backends/networking/curl/socket.cpp index e3da5568bc5..ccfa98ee62a 100644 --- a/backends/networking/curl/socket.cpp +++ b/backends/networking/curl/socket.cpp @@ -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; }