summaryrefslogtreecommitdiff
path: root/monitor/msft.h
diff options
context:
space:
mode:
authorLuiz Augusto von Dentz <luiz.von.dentz@intel.com>2021-10-19 16:40:20 -0700
committerLuiz Augusto von Dentz <luiz.von.dentz@intel.com>2021-10-21 11:32:20 -0700
commit46ee5feb55f778efdd8b21907b195ead363af742 (patch)
treea0e10764e17380f48aaa718ac2ca193a8095af88 /monitor/msft.h
parent1b0374157c92f3256f1a4d0e69489486ca3f4508 (diff)
downloadbluez-46ee5feb55f778efdd8b21907b195ead363af742.tar.gz
monitor/msft: Fix uuid.u128 format
128 bits are actually 16 octecs not 8.
Diffstat (limited to 'monitor/msft.h')
-rw-r--r--monitor/msft.h2
1 files changed, 1 insertions, 1 deletions
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));