summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorSCratORS <scrators@mail.ru>2021-10-23 11:01:19 +0200
committerGitHub <noreply@github.com>2021-10-23 11:01:19 +0200
commit84db283b715f10e66b9e3225eeb00c7ebde36b44 (patch)
tree52257439d09ba4fb270e8bdad4230e4bdb90595a
parentUpdate FTPCommon.h (diff)
downloadFTPCLientServer-84db283b715f10e66b9e3225eeb00c7ebde36b44.tar
FTPCLientServer-84db283b715f10e66b9e3225eeb00c7ebde36b44.tar.gz
FTPCLientServer-84db283b715f10e66b9e3225eeb00c7ebde36b44.tar.bz2
FTPCLientServer-84db283b715f10e66b9e3225eeb00c7ebde36b44.tar.lz
FTPCLientServer-84db283b715f10e66b9e3225eeb00c7ebde36b44.tar.xz
FTPCLientServer-84db283b715f10e66b9e3225eeb00c7ebde36b44.tar.zst
FTPCLientServer-84db283b715f10e66b9e3225eeb00c7ebde36b44.zip
-rw-r--r--FTPCommon.h4
1 files changed, 2 insertions, 2 deletions
diff --git a/FTPCommon.h b/FTPCommon.h
index 7bc8c96..059b36f 100644
--- a/FTPCommon.h
+++ b/FTPCommon.h
@@ -8,12 +8,12 @@
#ifdef ESP8266
#include <PolledTimeout.h>
-using esp8266::polledTimeout::oneShotFastMs; // import the type to the local namespace
+using polledTimeout::oneShotFastMs; // import the type to the local namespace
#define BUFFERSIZE TCP_MSS
#define PRINTu32 "lu"
#elif defined ESP32
#include "esp32compat/PolledTimeout.h"
-using esp32::polledTimeout::oneShotFastMs;
+using polledTimeout::oneShotFastMs;
#define BUFFERSIZE CONFIG_TCP_MSS
#define PRINTu32 "u"
#endif