From 96056a62721cb4d81856311d9b808460a80b59d4 Mon Sep 17 00:00:00 2001 From: Damien George Date: Sat, 15 Feb 2014 23:02:00 +0000 Subject: py: Revent some long int configuration. --- py/binary.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'py/binary.c') diff --git a/py/binary.c b/py/binary.c index f8daa3e6f..b28eb6426 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_LONGLONG +#if MICROPY_LONGINT_IMPL != MICROPY_LONGINT_IMPL_NONE case 'q': case 'Q': // TODO: Explode API more to cover signedness -- cgit v1.2.3