From 1884769a02de2de1457ac7156c5267c808f23003 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 Signed-off-by: Anuj Jain Signed-off-by: Ayush Garg --- emulator/btdev.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/emulator/btdev.c b/emulator/btdev.c index 9a8c9b6..ca87681 100755 --- 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.7.4