From ef96b9ad6b9987d5320443796c36b86b0c8e7f5a Mon Sep 17 00:00:00 2001 From: Luiz Augusto von Dentz Date: Mon, 26 Oct 2020 16:03:01 -0700 Subject: [PATCH] emulator: Fix not setting CIG ID properly --- emulator/btdev.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/emulator/btdev.c b/emulator/btdev.c index 9a8c9b654..ca87681a6 100644 --- a/emulator/btdev.c +++ b/emulator/btdev.c @@ -1447,7 +1447,7 @@ static void le_cis_request(struct btdev *dev, evt.acl_handle = cpu_to_le16(ACL_HANDLE); evt.cis_handle = cpu_to_le16(ISO_HANDLE); - evt.cis_id = 0x00; + evt.cig_id = 0x00; evt.cis_id = 0x00; le_meta_event(remote, BT_HCI_EVT_LE_CIS_REQ, &evt, sizeof(evt)); -- 2.47.3