diff options
author | Damien George <damien.p.george@gmail.com> | 2015-04-11 12:15:47 +0100 |
---|---|---|
committer | Damien George <damien.p.george@gmail.com> | 2015-04-16 14:30:16 +0000 |
commit | e72cda99fd5fc9e7c6476eb8574c4401d3ef9560 (patch) | |
tree | ee3a5877c307fcaec0724716423f9b619e162c70 /py/qstr.c | |
parent | 5ae5ec986ea5e14321f6c8091454c165c23b40c5 (diff) | |
download | micropython-e72cda99fd5fc9e7c6476eb8574c4401d3ef9560.tar.gz micropython-e72cda99fd5fc9e7c6476eb8574c4401d3ef9560.zip |
py: Convert occurrences of non-debug printf to mp_printf.
Diffstat (limited to 'py/qstr.c')
-rw-r--r-- | py/qstr.c | 2 |
1 files changed, 1 insertions, 1 deletions
@@ -235,7 +235,7 @@ void qstr_pool_info(mp_uint_t *n_pool, mp_uint_t *n_qstr, mp_uint_t *n_str_data_ void qstr_dump_data(void) { for (qstr_pool_t *pool = MP_STATE_VM(last_pool); pool != NULL && pool != &const_pool; pool = pool->prev) { for (const byte **q = pool->qstrs, **q_top = pool->qstrs + pool->len; q < q_top; q++) { - printf("Q(%s)\n", Q_GET_DATA(*q)); + mp_printf(&mp_plat_print, "Q(%s)\n", Q_GET_DATA(*q)); } } } |