From 4630c045bd3ff8d28f329baad4364a2b1c88ba07 Mon Sep 17 00:00:00 2001 From: "J. Nick Koston" Date: Sun, 5 Apr 2026 13:06:27 -1000 Subject: [PATCH] Shorten Prohibited to Prohibit in exception cause names --- esphome/components/esp8266/crash_handler.cpp | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/esphome/components/esp8266/crash_handler.cpp b/esphome/components/esp8266/crash_handler.cpp index 72ddc68916..d74f845380 100644 --- a/esphome/components/esp8266/crash_handler.cpp +++ b/esphome/components/esp8266/crash_handler.cpp @@ -108,11 +108,11 @@ static const LogString *get_exception_cause(uint32_t cause) { if (cause == 9) return LOG_STR("Alignment"); if (cause == 20) - return LOG_STR("InstFetchProhibited"); + return LOG_STR("InstFetchProhibit"); if (cause == 28) - return LOG_STR("LoadProhibited"); + return LOG_STR("LoadProhibit"); if (cause == 29) - return LOG_STR("StoreProhibited"); + return LOG_STR("StoreProhibit"); return nullptr; }