Changed uint64_t attribute type to size_t

This commit is contained in:
Th3maz1ng 2022-04-23 22:31:30 +02:00
parent db1873b714
commit 4297df4acb

View File

@ -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;