diff options
Diffstat (limited to 'py/objint.c')
-rw-r--r-- | py/objint.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/py/objint.c b/py/objint.c index c0bf756f1b..efec60030d 100644 --- a/py/objint.c +++ b/py/objint.c @@ -39,7 +39,7 @@ const mp_obj_type_t int_type = { #if MICROPY_LONGINT_IMPL == MICROPY_LONGINT_IMPL_NONE // This is called only for non-SMALL_INT -void int_print(void (*print)(void *env, const char *fmt, ...), void *env, mp_obj_t self_in) { +void int_print(void (*print)(void *env, const char *fmt, ...), void *env, mp_obj_t self_in, mp_print_kind_t kind) { } // This is called only for non-SMALL_INT |