summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorSCratORS <scrators@mail.ru>2021-10-23 11:15:41 +0200
committerGitHub <noreply@github.com>2021-10-23 11:15:41 +0200
commitb7f379906e688c2eafcdaa8ba3348869ae8d0e33 (patch)
treeb971e581fc7af6c6c9e333ef712c8a228c7f61e2
parentUpdate FTPCommon.h (diff)
downloadFTPCLientServer-b7f379906e688c2eafcdaa8ba3348869ae8d0e33.tar
FTPCLientServer-b7f379906e688c2eafcdaa8ba3348869ae8d0e33.tar.gz
FTPCLientServer-b7f379906e688c2eafcdaa8ba3348869ae8d0e33.tar.bz2
FTPCLientServer-b7f379906e688c2eafcdaa8ba3348869ae8d0e33.tar.lz
FTPCLientServer-b7f379906e688c2eafcdaa8ba3348869ae8d0e33.tar.xz
FTPCLientServer-b7f379906e688c2eafcdaa8ba3348869ae8d0e33.tar.zst
FTPCLientServer-b7f379906e688c2eafcdaa8ba3348869ae8d0e33.zip
-rw-r--r--FTPCommon.h4
1 files changed, 2 insertions, 2 deletions
diff --git a/FTPCommon.h b/FTPCommon.h
index c876b72..5c2654f 100644
--- a/FTPCommon.h
+++ b/FTPCommon.h
@@ -8,12 +8,12 @@
#ifdef ESP8266
#include <PolledTimeout.h>
-using arduino::esp8266::polledTimeout::oneShotMs; // import the type to the local namespace
+using esp8266::polledTimeout::oneShotMs; // import the type to the local namespace
#define BUFFERSIZE TCP_MSS
#define PRINTu32 "lu"
#elif defined ESP32
#include "esp32compat/PolledTimeout.h"
-using arduino::esp8266::polledTimeout::oneShotMs;
+using esp8266::polledTimeout::oneShotMs;
#define BUFFERSIZE CONFIG_TCP_MSS
#define PRINTu32 "u"
#endif