(iOS) Fix warning in btstack_thread_stop

This commit is contained in:
Twinaphex 2015-04-02 19:39:40 +02:00
parent 38204f5c26
commit f58feb6b16

View File

@ -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);
}