(iOS) Fix warning in btstack_thread_stop
This commit is contained in:
parent
38204f5c26
commit
f58feb6b16
|
@ -108,8 +108,9 @@ bool btstack_try_load(void)
|
|||
return true;
|
||||
}
|
||||
|
||||
void btstack_thread_stop(void)
|
||||
void btstack_thread_stop(void *data)
|
||||
{
|
||||
(void)data;
|
||||
bt_send_cmd_ptr(btstack_set_power_mode_ptr, HCI_POWER_OFF);
|
||||
}
|
||||
|
||||
|
|
Loading…
Reference in New Issue