diff options
Diffstat (limited to 'py/mpprint.h')
-rw-r--r-- | py/mpprint.h | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/py/mpprint.h b/py/mpprint.h index 07462bddc..aef9015de 100644 --- a/py/mpprint.h +++ b/py/mpprint.h @@ -40,9 +40,9 @@ #define PF_FLAG_SHOW_OCTAL_LETTER (0x200) #if MICROPY_PY_IO && MICROPY_PY_SYS_STDFILES -# define MP_PYTHON_PRINTER &mp_sys_stdout_print +#define MP_PYTHON_PRINTER &mp_sys_stdout_print #else -# define MP_PYTHON_PRINTER &mp_plat_print +#define MP_PYTHON_PRINTER &mp_plat_print #endif typedef void (*mp_print_strn_t)(void *data, const char *str, size_t len); |