diff options
| author | Scott Shawcroft <scott@tannewt.org> | 2019-01-18 12:52:27 -0800 |
|---|---|---|
| committer | Scott Shawcroft <scott@tannewt.org> | 2019-01-18 12:52:27 -0800 |
| commit | 58a2009cc11ac6b080d182854d0f669a6f65647a (patch) | |
| tree | 80a0c64544fc4b3a15826f6a790123bc2599888d /extmod/machine_pinbase.c | |
| parent | 0318a9a9bcbceab308323788cb9e579da166710e (diff) | |
Fix unix build
Diffstat (limited to 'extmod/machine_pinbase.c')
| -rw-r--r-- | extmod/machine_pinbase.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/extmod/machine_pinbase.c b/extmod/machine_pinbase.c index 070c5cde9..997a6fd99 100644 --- a/extmod/machine_pinbase.c +++ b/extmod/machine_pinbase.c @@ -45,11 +45,11 @@ STATIC const mp_pinbase_t pinbase_singleton = { .base = { &machine_pinbase_type }, }; -STATIC mp_obj_t pinbase_make_new(const mp_obj_type_t *type, size_t n_args, size_t n_kw, const mp_obj_t *args) { +STATIC mp_obj_t pinbase_make_new(const mp_obj_type_t *type, size_t n_args, const mp_obj_t *args, mp_map_t *kw_args) { (void)type; (void)n_args; - (void)n_kw; (void)args; + (void)kw_args; return MP_OBJ_FROM_PTR(&pinbase_singleton); } |
