From ce27b10eb187b316fab232939b3cab8ec4371d49 Mon Sep 17 00:00:00 2001 From: Matthias Ringwald Date: Fri, 29 Apr 2022 11:37:21 +0200 Subject: [PATCH] posix: fix warning --- platform/posix/hci_dump_posix_fs.c | 1 + 1 file changed, 1 insertion(+) diff --git a/platform/posix/hci_dump_posix_fs.c b/platform/posix/hci_dump_posix_fs.c index fadd935ce..2c038643a 100644 --- a/platform/posix/hci_dump_posix_fs.c +++ b/platform/posix/hci_dump_posix_fs.c @@ -80,6 +80,7 @@ static void hci_dump_posix_fs_reset(void){ // provide summary for ISO Data Packets if not supported by fileformat/viewer yet static uint16_t hci_dump_iso_summary(uint8_t in, uint8_t *packet, uint16_t len){ + UNUSED(len); uint16_t conn_handle = little_endian_read_16(packet, 0) & 0xfff; uint8_t pb = (packet[1] >> 4) & 3; uint8_t ts = (packet[1] >> 6) & 1;