summaryrefslogtreecommitdiffstats
path: root/FTPCommon.h
diff options
context:
space:
mode:
Diffstat (limited to 'FTPCommon.h')
-rw-r--r--FTPCommon.h6
1 files changed, 3 insertions, 3 deletions
diff --git a/FTPCommon.h b/FTPCommon.h
index a88dd8d..79a8817 100644
--- a/FTPCommon.h
+++ b/FTPCommon.h
@@ -7,13 +7,13 @@
#include <WString.h>
#ifdef ESP8266
-#include <PolledTimeout.h>
-using esp8266::polledTimeout::oneShotMs; // import the type to the local namespace
+#include "esp8266compat/PolledTimeout.h"
+using esp8266Pool::polledTimeout::oneShotMs; // import the type to the local namespace
#define BUFFERSIZE TCP_MSS
#define PRINTu32 "lu"
#elif defined ESP32
#include "esp32compat/PolledTimeout.h"
-using esp32::polledTimeout::oneShotMs;
+using esp32Pool::polledTimeout::oneShotMs;
#define BUFFERSIZE CONFIG_TCP_MSS
#define PRINTu32 "u"
#endif