diff options
author | Damien George <damien.p.george@gmail.com> | 2014-03-29 13:43:38 +0000 |
---|---|---|
committer | Damien George <damien.p.george@gmail.com> | 2014-03-29 13:43:38 +0000 |
commit | 3e1a5c10c5bf0a38c2ed3b9986b43b8cb8227b2f (patch) | |
tree | 76c6f10fcf7d669c52d2b9d84483e8c4f937b9d9 /py/objint.c | |
parent | 07ddab529cb0953c473d30795e4dc3c6dfff0d89 (diff) |
py: Rename old const type objects to mp_type_* for consistency.
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 70f44ac1e..70f20e3cd 100644 --- a/py/objint.c +++ b/py/objint.c @@ -109,7 +109,7 @@ mp_float_t mp_obj_int_as_float(mp_obj_t self_in) { #endif // MICROPY_LONGINT_IMPL == MICROPY_LONGINT_IMPL_NONE -const mp_obj_type_t int_type = { +const mp_obj_type_t mp_type_int = { { &mp_type_type }, .name = MP_QSTR_int, .print = int_print, |