diff options
author | SCratORS <scrators@mail.ru> | 2021-10-23 10:35:00 +0200 |
---|---|---|
committer | GitHub <noreply@github.com> | 2021-10-23 10:35:00 +0200 |
commit | b640b47bf1394cefaf43a5f205b5f76d7099f45d (patch) | |
tree | dfac0ab8af2190783ede4ee1ac89f9933959ab61 | |
parent | fix silly typo (diff) | |
download | FTPCLientServer-b640b47bf1394cefaf43a5f205b5f76d7099f45d.tar FTPCLientServer-b640b47bf1394cefaf43a5f205b5f76d7099f45d.tar.gz FTPCLientServer-b640b47bf1394cefaf43a5f205b5f76d7099f45d.tar.bz2 FTPCLientServer-b640b47bf1394cefaf43a5f205b5f76d7099f45d.tar.lz FTPCLientServer-b640b47bf1394cefaf43a5f205b5f76d7099f45d.tar.xz FTPCLientServer-b640b47bf1394cefaf43a5f205b5f76d7099f45d.tar.zst FTPCLientServer-b640b47bf1394cefaf43a5f205b5f76d7099f45d.zip |
-rw-r--r-- | FTPCommon.h | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/FTPCommon.h b/FTPCommon.h index a88dd8d..c0e15f7 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 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 esp32::polledTimeout::oneShotMs; +// using esp32::polledTimeout::oneShotMs; #define BUFFERSIZE CONFIG_TCP_MSS #define PRINTu32 "u" #endif |