Skip to content

Commit 3b8af4c

Browse files
committed
fix an errant 'all_args'
1 parent 414c2f9 commit 3b8af4c

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

shared-bindings/sdioio/SDCard.c

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -117,7 +117,7 @@ STATIC void check_for_deinit(sdioio_sdcard_obj_t *self) {
117117
//|
118118
//| .. note:: Leaving a value unspecified or 0 means the current setting is kept"""
119119
//|
120-
STATIC mp_obj_t sdioio_sdcard_configure(size_t n_args, const mp_obj_t *all_args, mp_map_t *kw_args) {
120+
STATIC mp_obj_t sdioio_sdcard_configure(size_t n_args, const mp_obj_t *pos_args, mp_map_t *kw_args) {
121121
enum { ARG_frequency, ARG_width, NUM_ARGS };
122122
static const mp_arg_t allowed_args[] = {
123123
{ MP_QSTR_frequency, MP_ARG_KW_ONLY | MP_ARG_INT, {.u_int = 0} },

0 commit comments

Comments
 (0)