diff options
Diffstat (limited to 'FTPCommon.h')
-rw-r--r-- | FTPCommon.h | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/FTPCommon.h b/FTPCommon.h index dc395da..745c849 100644 --- a/FTPCommon.h +++ b/FTPCommon.h @@ -8,12 +8,12 @@ #ifdef ESP8266 #include <PolledTimeout.h> - using ESP8266::polledTimeout::oneShotMs; // import the type to the local namespace +using 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 polledTimeout::oneShotMs; #define BUFFERSIZE CONFIG_TCP_MSS #define PRINTu32 "u" #endif |