From d02109ce49607d3cb015602c4f4a7656290eefd0 Mon Sep 17 00:00:00 2001 From: Stefan Boberg Date: Tue, 31 Aug 2021 21:16:50 +0200 Subject: Compilation fix again (downloaded_bytes is integral since a while back) --- zenserver/upstream/jupiter.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'zenserver/upstream/jupiter.cpp') diff --git a/zenserver/upstream/jupiter.cpp b/zenserver/upstream/jupiter.cpp index 09be2c776..4a879b233 100644 --- a/zenserver/upstream/jupiter.cpp +++ b/zenserver/upstream/jupiter.cpp @@ -60,7 +60,7 @@ namespace detail { ContentType = It->second; } - const double Bytes = Verb == "GET"sv ? Response.downloaded_bytes : Response.uploaded_bytes; + const uint64_t Bytes = Verb == "GET"sv ? Response.downloaded_bytes : Response.uploaded_bytes; const bool IsBinary = ContentType == "application/x-ue-cb"sv || ContentType == "application/x-ue-comp"sv || ContentType == "application/octet-stream"; -- cgit v1.2.3