From 1ae8b381bafeb2008f90b8ab3b6a42586837cd6c Mon Sep 17 00:00:00 2001 From: s-hadinger <49731213+s-hadinger@users.noreply.github.com> Date: Tue, 27 Dec 2022 20:55:51 +0100 Subject: [PATCH] Fix warnings when compiling Zigbee (#17524) --- tasmota/tasmota_xdrv_driver/xdrv_23_zigbee_7_6_flash_fs.ino | 2 ++ 1 file changed, 2 insertions(+) diff --git a/tasmota/tasmota_xdrv_driver/xdrv_23_zigbee_7_6_flash_fs.ino b/tasmota/tasmota_xdrv_driver/xdrv_23_zigbee_7_6_flash_fs.ino index 347fd0cad..1900e7122 100644 --- a/tasmota/tasmota_xdrv_driver/xdrv_23_zigbee_7_6_flash_fs.ino +++ b/tasmota/tasmota_xdrv_driver/xdrv_23_zigbee_7_6_flash_fs.ino @@ -110,10 +110,12 @@ public: #ifdef ESP32 #if ESP_ARDUINO_VERSION > ESP_ARDUINO_VERSION_VAL(2, 0, 5) bool seekDir(long position){ + return false; // ignore } String getNextFileName(void) { + return ""; // ignore } #endif