fix test compile due to change l2cap packet handler signature

This commit is contained in:
Matthias Ringwald 2015-11-15 20:45:43 +01:00
parent bddf0de434
commit 60416aa529

View File

@ -39,7 +39,7 @@ void CHECK_EQUAL_ARRAY(const uint8_t * expected, uint8_t * actual, int size){
// -----------------------------------------------------
static void handle_hci_event(void * connection, uint8_t packet_type, uint16_t channel, uint8_t *packet, uint16_t size){
static void handle_hci_event(uint8_t packet_type, uint16_t channel, uint8_t *packet, uint16_t size){
if (packet_type != HCI_EVENT_PACKET) return;
bd_addr_t address;