Bluetooth: Make bt_stop_scanning parameters explicit void
Change-Id: I47ece76e00719d2fef702763c061055a1e9c5f76 Signed-off-by: Szymon Janc <szymon.janc@tieto.com>
This commit is contained in:
parent
801c09757e
commit
19fe40764c
|
@ -110,7 +110,7 @@ struct bt_eir {
|
|||
int bt_start_advertising(uint8_t type, const struct bt_eir *ad,
|
||||
const struct bt_eir *sd);
|
||||
int bt_start_scanning(uint8_t scan_type, uint8_t scan_filter);
|
||||
int bt_stop_scanning();
|
||||
int bt_stop_scanning(void);
|
||||
|
||||
/** @brief Setting LE connection to peer
|
||||
*
|
||||
|
|
|
@ -1322,7 +1322,7 @@ int bt_start_scanning(uint8_t scan_type, uint8_t scan_filter)
|
|||
return 0;
|
||||
}
|
||||
|
||||
int bt_stop_scanning()
|
||||
int bt_stop_scanning(void)
|
||||
{
|
||||
struct bt_buf *buf, *rsp;
|
||||
struct bt_hci_cp_le_set_scan_enable *scan_enable;
|
||||
|
|
Loading…
Reference in New Issue