diff options
| author | Joshua Diamond | 2025-12-12 19:17:42 +0100 |
|---|---|---|
| committer | GitHub | 2025-12-12 19:17:42 +0100 |
| commit | 2e68ddc8266aa8bd70e8e734a5b433e2ed299603 (patch) | |
| tree | e075c302eb1ae466a5b477bbe880ed016fc49c24 | |
| parent | c1fedab4570a0b87b3422239a724681788727b09 (diff) | |
Fix broken compilation when OS_DETECTION_DEBUG_ENABLE is defined (#25869)
Fix include in os_detection (broken in https://github.com/qmk/qmk_firmware/pull/24356)
| -rw-r--r-- | quantum/os_detection.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/quantum/os_detection.c b/quantum/os_detection.c index 552375f61c..2a5237dfc3 100644 --- a/quantum/os_detection.c +++ b/quantum/os_detection.c @@ -23,7 +23,7 @@ #endif #ifdef OS_DETECTION_DEBUG_ENABLE -# include "eeconfig.h" +# include "nvm_eeprom_eeconfig_internal.h" # include "eeprom.h" # include "print.h" |