Skip to content

Commit b09cd0e

Browse files
committed
extmod/modbtree: Fix unused argument warning.
1 parent 737bd9c commit b09cd0e

1 file changed

Lines changed: 1 addition & 0 deletions

File tree

extmod/modbtree.c

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -86,6 +86,7 @@ STATIC mp_obj_t btree_close(mp_obj_t self_in) {
8686
STATIC MP_DEFINE_CONST_FUN_OBJ_1(btree_close_obj, btree_close);
8787

8888
STATIC mp_obj_t btree_put(size_t n_args, const mp_obj_t *args) {
89+
(void)n_args;
8990
mp_obj_btree_t *self = MP_OBJ_TO_PTR(args[0]);
9091
DBT key, val;
9192
key.data = (void*)mp_obj_str_get_data(args[1], &key.size);

0 commit comments

Comments
 (0)