From 1431ce278739f39127d10c8ff05c7f19af1a43e2 Mon Sep 17 00:00:00 2001 From: Matthias Ringwald Date: Mon, 22 Feb 2021 19:15:55 +0100 Subject: [PATCH] hci: fix build --- src/hci.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/hci.c b/src/hci.c index ed8e4c339..48f517d3c 100644 --- a/src/hci.c +++ b/src/hci.c @@ -6104,7 +6104,7 @@ int hci_get_sco_packet_length(void){ #ifdef ENABLE_SCO_OVER_HCI // Transparent = mSBC => 1, CVSD with 16-bit samples requires twice as much bytes - int ultiplier = ((hci_stack->sco_voice_setting_active & 0x03) == 0x03) ? 1 : 2; + int multiplier = ((hci_stack->sco_voice_setting_active & 0x03) == 0x03) ? 1 : 2; if (hci_have_usb_transport()){ // see Core Spec for H2 USB Transfer.