From 0e14d0b0a0db9af899acb6085edc3b35bdac6c00 Mon Sep 17 00:00:00 2001 From: "J. Nick Koston" Date: Fri, 27 Feb 2026 12:47:08 -1000 Subject: [PATCH] Fix config path in comments: esp32 framework advanced --- esphome/components/esp32/printf_stubs.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/esphome/components/esp32/printf_stubs.cpp b/esphome/components/esp32/printf_stubs.cpp index 5c24174034..5b93919f4e 100644 --- a/esphome/components/esp32/printf_stubs.cpp +++ b/esphome/components/esp32/printf_stubs.cpp @@ -46,7 +46,7 @@ static int write_printf_buffer_(FILE *stream, char *buf, int len) { size_t write_len = len; if (write_len >= PRINTF_BUFFER_SIZE) { fwrite(buf, 1, PRINTF_BUFFER_SIZE - 1, stream); - esp_system_abort("printf buffer overflow; set enable_full_printf: true in esp32 advanced config"); + esp_system_abort("printf buffer overflow; set enable_full_printf: true in esp32 framework advanced config"); } if (fwrite(buf, 1, write_len, stream) < write_len || ferror(stream)) { return -1;