fix(esp_system): fix cache error size message

This commit is contained in:
Omar Chebib
2024-11-22 11:06:13 +08:00
parent d8de8c6e40
commit 4c8056882b

View File

@@ -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