From 263e9822eac5bb338411087a6b61e60962882c7e Mon Sep 17 00:00:00 2001 From: Dan Halbert Date: Mon, 18 Feb 2019 12:21:31 -0500 Subject: [PATCH] typo --- py/circuitpy_mpconfig.h | 5 ++--- 1 file changed, 2 insertions(+), 3 deletions(-) diff --git a/py/circuitpy_mpconfig.h b/py/circuitpy_mpconfig.h index 04ea8f9576..884ec5983c 100644 --- a/py/circuitpy_mpconfig.h +++ b/py/circuitpy_mpconfig.h @@ -462,14 +462,13 @@ extern const struct _mp_obj_module_t ustack_module; // These modules are not yet in shared-bindings, but we prefer the non-uxxx names. #if MICROPY_PY_UERRNO -#define ERRNO_MODULE - { MP_ROM_QSTR(MP_QSTR_errno), MP_ROM_PTR(&mp_module_uerrno) }, +#define ERRNO_MODULE { MP_ROM_QSTR(MP_QSTR_errno), MP_ROM_PTR(&mp_module_uerrno) }, #else #define ERRNO_MODULE #endif #if MICROPY_PY_UJSON -#define JSON_MODULE { MP_ROM_QSTR(MP_QSTR_json), MP_ROM_PTR(&mp_module_ujson) }, +#define JSON_MODULE { MP_ROM_QSTR(MP_QSTR_json), MP_ROM_PTR(&mp_module_ujson) }, #else #define JSON_MODULE #endif