diff options
author | SCratORS <scrators@mail.ru> | 2021-10-23 10:38:35 +0200 |
---|---|---|
committer | GitHub <noreply@github.com> | 2021-10-23 10:38:35 +0200 |
commit | 393a4bedc1061c8221732781216af2c6d13e7147 (patch) | |
tree | 9d2e8cabfa3737f73b69a028c2bf8f470e5fdc05 | |
parent | Update FTPCommon.h (diff) | |
download | FTPCLientServer-393a4bedc1061c8221732781216af2c6d13e7147.tar FTPCLientServer-393a4bedc1061c8221732781216af2c6d13e7147.tar.gz FTPCLientServer-393a4bedc1061c8221732781216af2c6d13e7147.tar.bz2 FTPCLientServer-393a4bedc1061c8221732781216af2c6d13e7147.tar.lz FTPCLientServer-393a4bedc1061c8221732781216af2c6d13e7147.tar.xz FTPCLientServer-393a4bedc1061c8221732781216af2c6d13e7147.tar.zst FTPCLientServer-393a4bedc1061c8221732781216af2c6d13e7147.zip |
-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 |