aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorStefan Boberg <[email protected]>2021-08-31 21:16:50 +0200
committerStefan Boberg <[email protected]>2021-08-31 21:16:50 +0200
commitd02109ce49607d3cb015602c4f4a7656290eefd0 (patch)
tree3d11b7a86d79637679ba4f69ecab23d3f13fd56c
parentMerge branch 'main' of https://github.com/EpicGames/zen (diff)
downloadzen-d02109ce49607d3cb015602c4f4a7656290eefd0.tar.xz
zen-d02109ce49607d3cb015602c4f4a7656290eefd0.zip
Compilation fix again (downloaded_bytes is integral since a while back)
-rw-r--r--zenserver/upstream/jupiter.cpp2
1 files changed, 1 insertions, 1 deletions
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";