From 4297df4acbe7e87fd2909f457535c38dd370c861 Mon Sep 17 00:00:00 2001 From: Th3maz1ng Date: Sat, 23 Apr 2022 22:31:30 +0200 Subject: [PATCH] Changed uint64_t attribute type to size_t --- src/app/FTPClient.h | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/app/FTPClient.h b/src/app/FTPClient.h index d53f9c1..ab36c02 100644 --- a/src/app/FTPClient.h +++ b/src/app/FTPClient.h @@ -29,8 +29,8 @@ class FTPClient : public TCPClient char *_username = NULL; char *_currentDirectory = NULL; char *_currentFile = NULL; - uint64_t _fileSentBytes = 0; - uint64_t _fileRecvBytes = 0; + size_t _fileSentBytes = 0; + size_t _fileRecvBytes = 0; boolean _waitingForDataConnection = false; boolean _fileIsBeeingReceived = false; uint64_t _actionTimeout = 0;