From 46ee5feb55f778efdd8b21907b195ead363af742 Mon Sep 17 00:00:00 2001 From: Luiz Augusto von Dentz Date: Tue, 19 Oct 2021 16:40:20 -0700 Subject: [PATCH] monitor/msft: Fix uuid.u128 format 128 bits are actually 16 octecs not 8. --- monitor/msft.h | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/monitor/msft.h b/monitor/msft.h index 79692537f..d2921f4c8 100644 --- a/monitor/msft.h +++ b/monitor/msft.h @@ -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)); -- 2.47.3