From b0cbf1d455b98af89b76ca4d8308485096de3b99 Mon Sep 17 00:00:00 2001 From: Kumar Gala Date: Thu, 22 Jun 2017 12:13:27 -0500 Subject: [PATCH] Bluetooth: Cleanup use of C99 types We introduced some see C99 types, so convert them over to the Zephyr types. Signed-off-by: Kumar Gala --- subsys/bluetooth/controller/ll_sw/ll_filter.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/subsys/bluetooth/controller/ll_sw/ll_filter.c b/subsys/bluetooth/controller/ll_sw/ll_filter.c index 95f71ba1402..56c4a22da6e 100644 --- a/subsys/bluetooth/controller/ll_sw/ll_filter.c +++ b/subsys/bluetooth/controller/ll_sw/ll_filter.c @@ -422,7 +422,7 @@ u32_t ll_rl_remove(bt_addr_le_t *id_addr) i = ll_rl_idx_find(id_addr->type, id_addr->a.val); if (i >= 0) { if (rl[i].pirk) { - uint8_t idx = rl[i].pirk_idx; + u8_t idx = rl[i].pirk_idx; memmove(peer_irks[idx], peer_irks[idx + 1], 16 * peer_irk_count--); }