diff options
author | SCratORS <scrators@mail.ru> | 2021-10-23 10:54:07 +0200 |
---|---|---|
committer | GitHub <noreply@github.com> | 2021-10-23 10:54:07 +0200 |
commit | 956fbc2494b10b0bf7504634c949651cfb1918a1 (patch) | |
tree | f3d741a9e2b6c29884e0c076b8c789466f27f18e | |
parent | Update FTPCommon.h (diff) | |
download | FTPCLientServer-956fbc2494b10b0bf7504634c949651cfb1918a1.tar FTPCLientServer-956fbc2494b10b0bf7504634c949651cfb1918a1.tar.gz FTPCLientServer-956fbc2494b10b0bf7504634c949651cfb1918a1.tar.bz2 FTPCLientServer-956fbc2494b10b0bf7504634c949651cfb1918a1.tar.lz FTPCLientServer-956fbc2494b10b0bf7504634c949651cfb1918a1.tar.xz FTPCLientServer-956fbc2494b10b0bf7504634c949651cfb1918a1.tar.zst FTPCLientServer-956fbc2494b10b0bf7504634c949651cfb1918a1.zip |
-rw-r--r-- | FTPCommon.h | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/FTPCommon.h b/FTPCommon.h index a723a5c..a88dd8d 100644 --- a/FTPCommon.h +++ b/FTPCommon.h @@ -8,12 +8,12 @@ #ifdef ESP8266 #include <PolledTimeout.h> -using esphome::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 esphome::esp32::polledTimeout::oneShotMs; +using esp32::polledTimeout::oneShotMs; #define BUFFERSIZE CONFIG_TCP_MSS #define PRINTu32 "u" #endif |