summaryrefslogtreecommitdiffstatshomepage
path: root/py/builtinevex.c
diff options
context:
space:
mode:
Diffstat (limited to 'py/builtinevex.c')
-rw-r--r--py/builtinevex.c2
1 files changed, 2 insertions, 0 deletions
diff --git a/py/builtinevex.c b/py/builtinevex.c
index 9bca4a0f53..85ffbf4e65 100644
--- a/py/builtinevex.c
+++ b/py/builtinevex.c
@@ -75,6 +75,8 @@ STATIC mp_obj_t code_execute(mp_obj_code_t *self, mp_obj_t globals, mp_obj_t loc
}
STATIC mp_obj_t mp_builtin_compile(mp_uint_t n_args, const mp_obj_t *args) {
+ (void)n_args;
+
// get the source
mp_uint_t str_len;
const char *str = mp_obj_str_get_data(args[0], &str_len);