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:
Szymon Janc 2015-06-16 15:21:52 +02:00 committed by Anas Nashif
parent 801c09757e
commit 19fe40764c
2 changed files with 2 additions and 2 deletions

View File

@ -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
*

View File

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