Skip to content

Commit 6540208

Browse files
committed
Merge branch 'fix/panic_arch_size' into 'master'
fix(esp_system): fix cache error size message Closes IDF-11769 See merge request espressif/esp-idf!35112
2 parents 12bb853 + 4c80568 commit 6540208

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

components/esp_system/port/arch/xtensa/panic_arch.c

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -213,7 +213,7 @@ static inline void print_cache_err_details(const void *f)
213213
}
214214
if (err.size) {
215215
panic_print_str(", error size: 0x");
216-
panic_print_hex(err.vaddr);
216+
panic_print_hex(err.size);
217217
}
218218
} else {
219219
// Default to cache disabled message if no specific error is found

0 commit comments

Comments
 (0)