From 95e65d5c3065a9934151b3266f6ae9c2ffcbf6c2 Mon Sep 17 00:00:00 2001 From: Matthias Ringwald Date: Wed, 29 Jul 2015 14:26:29 +0200 Subject: [PATCH] fix build --- ble/l2cap_le.c | 1 + 1 file changed, 1 insertion(+) diff --git a/ble/l2cap_le.c b/ble/l2cap_le.c index 8fdae76d2..254af12e1 100644 --- a/ble/l2cap_le.c +++ b/ble/l2cap_le.c @@ -165,6 +165,7 @@ void l2cap_emit_connection_parameter_update_response(uint16_t handle, uint16_t r static void l2cap_run(void){ // send l2cap con paramter update if necessary + linked_list_iterator_t it; hci_connections_get_iterator(&it); while(linked_list_iterator_has_next(&it)){ hci_connection_t * connection = (hci_connection_t *) linked_list_iterator_next(&it);