From 3b8af4cf6f0bfd42bb70ac8f8bec3b706049739b Mon Sep 17 00:00:00 2001 From: Jeff Epler Date: Fri, 15 Oct 2021 21:13:47 -0500 Subject: [PATCH] fix an errant 'all_args' --- shared-bindings/sdioio/SDCard.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/shared-bindings/sdioio/SDCard.c b/shared-bindings/sdioio/SDCard.c index ac23ede2e3..e03d180d7a 100644 --- a/shared-bindings/sdioio/SDCard.c +++ b/shared-bindings/sdioio/SDCard.c @@ -117,7 +117,7 @@ STATIC void check_for_deinit(sdioio_sdcard_obj_t *self) { //| //| .. note:: Leaving a value unspecified or 0 means the current setting is kept""" //| -STATIC mp_obj_t sdioio_sdcard_configure(size_t n_args, const mp_obj_t *all_args, mp_map_t *kw_args) { +STATIC mp_obj_t sdioio_sdcard_configure(size_t n_args, const mp_obj_t *pos_args, mp_map_t *kw_args) { enum { ARG_frequency, ARG_width, NUM_ARGS }; static const mp_arg_t allowed_args[] = { { MP_QSTR_frequency, MP_ARG_KW_ONLY | MP_ARG_INT, {.u_int = 0} },