Bluetooth: controller: split: Fix uninitialized variable use error
Fix for compiler complaining of uninitialized variable use. Signed-off-by: Vinayak Kariappa Chettimada <vich@nordicsemi.no>
This commit is contained in:
parent
55cebf0eaa
commit
46299e71cc
1 changed files with 1 additions and 1 deletions
|
@ -464,7 +464,7 @@ uint8_t ll_adv_enable(uint8_t handle, uint8_t enable,
|
|||
uint8_t ll_adv_enable(uint8_t handle, uint8_t enable)
|
||||
{
|
||||
#if defined(CONFIG_BT_CTLR_ADV_PERIODIC)
|
||||
struct ll_adv_sync_set *sync;
|
||||
struct ll_adv_sync_set *sync = NULL;
|
||||
uint8_t sync_is_started = 0U;
|
||||
#endif /* CONFIG_BT_CTLR_ADV_PERIODIC */
|
||||
struct ll_adv_aux_set *aux;
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue