From 8cf9898dd3c93f3226d009ebce30f1f1c97b7afb Mon Sep 17 00:00:00 2001 From: David Lechner Date: Tue, 6 Jun 2023 10:41:23 -0500 Subject: [PATCH] py/parsenum: Fix typo in #endif comment. This fixes a `#endif` comment to exactly match the `#if`. Signed-off-by: David Lechner --- py/parsenum.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/py/parsenum.c b/py/parsenum.c index d59715fdc..e3ad8070c 100644 --- a/py/parsenum.c +++ b/py/parsenum.c @@ -214,7 +214,7 @@ static void accept_digit(mp_float_t *p_dec_val, int dig, int *p_exp_extra, int i } } } -#endif // MICROPY_BUILTINS_FLOAT +#endif // MICROPY_PY_BUILTINS_FLOAT #if MICROPY_PY_BUILTINS_COMPLEX mp_obj_t mp_parse_num_decimal(const char *str, size_t len, bool allow_imag, bool force_complex, mp_lexer_t *lex)