monitor/msft: Fix uuid.u128 format
authorLuiz Augusto von Dentz <luiz.von.dentz@intel.com>
Tue, 19 Oct 2021 23:40:20 +0000 (16:40 -0700)
committerAyush Garg <ayush.garg@samsung.com>
Fri, 11 Mar 2022 13:38:37 +0000 (19:08 +0530)
128 bits are actually 16 octecs not 8.

Signed-off-by: Anuj Jain <anuj01.jain@samsung.com>
Signed-off-by: Ayush Garg <ayush.garg@samsung.com>
monitor/msft.h

index 7969253..d2921f4 100644 (file)
@@ -87,7 +87,7 @@ struct msft_le_monitor_adv_uuid {
        union {
                uint16_t u16;
                uint32_t u32;
-               uint8_t  u128[8];
+               uint8_t  u128[16];
        } value;
 } __attribute__((packed));