summaryrefslogtreecommitdiff
path: root/py/objint_longlong.c
diff options
context:
space:
mode:
authorDavid Lechner <david@pybricks.com>2020-05-22 11:10:15 -0500
committerDamien George <damien.p.george@gmail.com>2020-05-28 10:02:14 +1000
commit093fd807606d088cfaf874e79060a6c68484cbfa (patch)
treed811e8afdadd5029184a7b3948814f66230261e9 /py/objint_longlong.c
parent9523ca92e03e699494560ec964bea748b291c7a0 (diff)
py/modsys: Use consistent naming pattern for module-level const objects.
This renames a few identifiers to follow the usual naming convention of mp_<module>_<name>. This makes them easier to find, e.g. when grep'ing.
Diffstat (limited to 'py/objint_longlong.c')
-rw-r--r--py/objint_longlong.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/py/objint_longlong.c b/py/objint_longlong.c
index 619b4d2b5..f2e88c3ea 100644
--- a/py/objint_longlong.c
+++ b/py/objint_longlong.c
@@ -40,7 +40,7 @@
#if MICROPY_PY_SYS_MAXSIZE
// Export value for sys.maxsize
-const mp_obj_int_t mp_maxsize_obj = {{&mp_type_int}, MP_SSIZE_MAX};
+const mp_obj_int_t mp_sys_maxsize_obj = {{&mp_type_int}, MP_SSIZE_MAX};
#endif
mp_obj_t mp_obj_int_from_bytes_impl(bool big_endian, size_t len, const byte *buf) {