diff options
author | Damien George <damien.p.george@gmail.com> | 2015-04-16 21:44:52 +0100 |
---|---|---|
committer | Damien George <damien.p.george@gmail.com> | 2015-04-16 21:44:52 +0100 |
commit | 2941d5c714fc7e5ada791b52f712f758ec120fa0 (patch) | |
tree | eb9fc94e3ef2d4f4d0ff2717d37dac72185c8f72 /qemu-arm/main.c | |
parent | a86d40ccd437fe0235c09426ef6d552b968d86e8 (diff) | |
download | micropython-2941d5c714fc7e5ada791b52f712f758ec120fa0.tar.gz micropython-2941d5c714fc7e5ada791b52f712f758ec120fa0.zip |
qemu-arm: Get compiling again with recent changes to print framework.
Diffstat (limited to 'qemu-arm/main.c')
-rw-r--r-- | qemu-arm/main.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/qemu-arm/main.c b/qemu-arm/main.c index 1673c82afd..0507744126 100644 --- a/qemu-arm/main.c +++ b/qemu-arm/main.c @@ -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); } } |