From fe53f27bc6977a218227ecae604136ce98a1c0b9 Mon Sep 17 00:00:00 2001 From: Matthias Ringwald Date: Sun, 12 Mar 2017 21:09:15 +0100 Subject: [PATCH] hci: fix compile --- src/hci.h | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/hci.h b/src/hci.h index 36e2f3e69..6dd748e6c 100644 --- a/src/hci.h +++ b/src/hci.h @@ -670,7 +670,7 @@ typedef struct { // single buffer for HCI packet assembly + additional prebuffer for H4 drivers uint8_t * hci_packet_buffer; - uint8_t hci_packet_buffer_data[HCI_OUTGOING_PRE_BUFFER_SIZE + HCI_PACKET_BUFFER_SIZE + HCI_OUTGOING_POST_BUFFER_SIZE]; + uint8_t hci_packet_buffer_data[HCI_OUTGOING_PRE_BUFFER_SIZE + HCI_PACKET_BUFFER_SIZE]; uint8_t hci_packet_buffer_reserved; uint16_t acl_fragmentation_pos; uint16_t acl_fragmentation_total_size;