From 1f4be6512f99898f8a4132690ba29316cb96a472 Mon Sep 17 00:00:00 2001 From: "J. Nick Koston" Date: Fri, 30 Jan 2026 22:05:15 -0600 Subject: [PATCH] more fixes --- esphome/core/progmem.h | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/esphome/core/progmem.h b/esphome/core/progmem.h index 3cd0999345..5755338cf2 100644 --- a/esphome/core/progmem.h +++ b/esphome/core/progmem.h @@ -99,10 +99,10 @@ struct LogString; static constexpr size_t BLOB_SIZE = Table::BLOB_SIZE; \ static constexpr auto BLOB PROGMEM = Table::make_blob(); \ static constexpr auto OFFSETS PROGMEM = Table::make_offsets(); \ - static ::esphome::ProgmemStr get_progmem_str(uint8_t index) { \ + static ::ProgmemStr get_progmem_str(uint8_t index) { \ if (index >= COUNT) \ return nullptr; \ - return reinterpret_cast<::esphome::ProgmemStr>(&BLOB[::esphome::progmem_read_byte(&OFFSETS[index])]); \ + return reinterpret_cast<::ProgmemStr>(&BLOB[::esphome::progmem_read_byte(&OFFSETS[index])]); \ } \ static const ::esphome::LogString *get_log_str(uint8_t index) { \ if (index >= COUNT) \