Skip to content

Commit

Permalink
Merge branch 'fix/panic_arch_size' into 'master'
Browse files Browse the repository at this point in the history
fix(esp_system): fix cache error size message

Closes IDF-11769

See merge request espressif/esp-idf!35112
  • Loading branch information
o-marshmallow committed Dec 26, 2024
2 parents 12bb853 + 4c80568 commit 6540208
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion components/esp_system/port/arch/xtensa/panic_arch.c
Original file line number Diff line number Diff line change
Expand Up @@ -213,7 +213,7 @@ static inline void print_cache_err_details(const void *f)
}
if (err.size) {
panic_print_str(", error size: 0x");
panic_print_hex(err.vaddr);
panic_print_hex(err.size);
}
} else {
// Default to cache disabled message if no specific error is found
Expand Down

0 comments on commit 6540208

Please sign in to comment.