diff options
Diffstat (limited to 'py/binary.c')
-rw-r--r-- | py/binary.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/py/binary.c b/py/binary.c index b28eb6426c..f8daa3e6fd 100644 --- a/py/binary.c +++ b/py/binary.c @@ -63,7 +63,7 @@ mp_obj_t mp_binary_get_val(char typecode, void *p, int index) { case 'I': case 'L': return mp_obj_new_int_from_uint(((uint32_t*)p)[index]); -#if MICROPY_LONGINT_IMPL != MICROPY_LONGINT_IMPL_NONE +#if MICROPY_LONGINT_IMPL == MICROPY_LONGINT_IMPL_LONGLONG case 'q': case 'Q': // TODO: Explode API more to cover signedness |