From 16cae233bb5262fc74097d5c857dfc03f876bf2f Mon Sep 17 00:00:00 2001 From: Th3maz1ng Date: Sat, 23 Apr 2022 22:44:16 +0200 Subject: [PATCH] Changed attribute type from uint64_t to size_t --- src/app/WEBClient.h | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/app/WEBClient.h b/src/app/WEBClient.h index 3cf0af4..4822182 100644 --- a/src/app/WEBClient.h +++ b/src/app/WEBClient.h @@ -16,7 +16,7 @@ class WEBClient : public TCPClient private: WEBServer::HttpRequestData _httpRequestData; WEBServer::HttpParserStatus _httpParserState = WEBServer::HttpParserStatus::PARSE_HTTP_VERB; - uint64_t _fileSentBytes = 0; + size_t _fileSentBytes = 0; struct { bool _rangeRequest;