aboutsummaryrefslogtreecommitdiff
path: root/extmod/modbluetooth.c
diff options
context:
space:
mode:
authorJim Mussared <jim.mussared@gmail.com>2020-07-20 11:29:19 +1000
committerDamien George <damien@micropython.org>2020-07-20 23:25:22 +1000
commit43ceadac5503ac6854dd0d400bd13b93f36dd6a6 (patch)
treeb7aaf02d22331eaabd9e77a39e02a366b171ec65 /extmod/modbluetooth.c
parentb7698841b20cd20a6729ba9d9f19a93f4fd33a5c (diff)
extmod/modbluetooth: Ignore unused self_in in ble_gatts_indicate.
Diffstat (limited to 'extmod/modbluetooth.c')
-rw-r--r--extmod/modbluetooth.c1
1 files changed, 1 insertions, 0 deletions
diff --git a/extmod/modbluetooth.c b/extmod/modbluetooth.c
index d94e5aec9..ced67365a 100644
--- a/extmod/modbluetooth.c
+++ b/extmod/modbluetooth.c
@@ -673,6 +673,7 @@ STATIC mp_obj_t bluetooth_ble_gatts_notify(size_t n_args, const mp_obj_t *args)
STATIC MP_DEFINE_CONST_FUN_OBJ_VAR_BETWEEN(bluetooth_ble_gatts_notify_obj, 3, 4, bluetooth_ble_gatts_notify);
STATIC mp_obj_t bluetooth_ble_gatts_indicate(mp_obj_t self_in, mp_obj_t conn_handle_in, mp_obj_t value_handle_in) {
+ (void)self_in;
mp_int_t conn_handle = mp_obj_get_int(conn_handle_in);
mp_int_t value_handle = mp_obj_get_int(value_handle_in);