Skip to content
Snippets Groups Projects
Commit 2941d5c7 authored by Damien George's avatar Damien George
Browse files

qemu-arm: Get compiling again with recent changes to print framework.

parent a86d40cc
No related branches found
No related tags found
No related merge requests found
......@@ -27,7 +27,7 @@ void do_str(const char *src) {
nlr_pop();
} else {
// uncaught exception
mp_obj_print_exception(&mp_extern_printf_wrapper, (mp_obj_t)nlr.ret_val);
mp_obj_print_exception(&mp_plat_print, (mp_obj_t)nlr.ret_val);
}
}
......
......@@ -38,7 +38,7 @@ inline void do_str(const char *src) {
tinytest_set_test_skipped_();
return;
}
mp_obj_print_exception(&mp_extern_printf_wrapper, exc);
mp_obj_print_exception(&mp_plat_print, exc);
tt_abort_msg("Uncaught exception");
}
end:
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Please register or to comment