extmod/modbtree: Use mp_printf instead of printf.

pull/1/head
Damien George 2019-11-05 11:37:36 +11:00
parent aad79adab7
commit e5acd06ad5
1 changed files with 1 additions and 1 deletions

View File

@ -60,7 +60,7 @@ STATIC const mp_obj_type_t btree_type;
}
void __dbpanic(DB *db) {
printf("__dbpanic(%p)\n", db);
mp_printf(&mp_plat_print, "__dbpanic(%p)\n", db);
}
STATIC mp_obj_btree_t *btree_new(DB *db) {