From e5039c6ff887dfbee84e7853defda2b18722e24c Mon Sep 17 00:00:00 2001 From: Damien George Date: Sun, 15 Feb 2015 13:17:11 +0000 Subject: py: Use TextIOWrapper only if PY_IO_FILEIO def'd; cast size_t for print. --- py/modmicropython.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'py/modmicropython.c') diff --git a/py/modmicropython.c b/py/modmicropython.c index edd137579..1ed0936ce 100644 --- a/py/modmicropython.c +++ b/py/modmicropython.c @@ -57,7 +57,7 @@ mp_obj_t mp_micropython_mem_info(mp_uint_t n_args, const mp_obj_t *args) { (void)args; #if MICROPY_MEM_STATS printf("mem: total=" UINT_FMT ", current=" UINT_FMT ", peak=" UINT_FMT "\n", - m_get_total_bytes_allocated(), m_get_current_bytes_allocated(), m_get_peak_bytes_allocated()); + (mp_uint_t)m_get_total_bytes_allocated(), (mp_uint_t)m_get_current_bytes_allocated(), (mp_uint_t)m_get_peak_bytes_allocated()); #endif #if MICROPY_STACK_CHECK printf("stack: " UINT_FMT " out of " INT_FMT "\n", mp_stack_usage(), MP_STATE_VM(stack_limit)); -- cgit v1.2.3