summaryrefslogtreecommitdiff
path: root/include/tools_share/uuid.h
diff options
context:
space:
mode:
Diffstat (limited to 'include/tools_share/uuid.h')
-rw-r--r--include/tools_share/uuid.h6
1 files changed, 3 insertions, 3 deletions
diff --git a/include/tools_share/uuid.h b/include/tools_share/uuid.h
index 6d935bd6..f3ac4af5 100644
--- a/include/tools_share/uuid.h
+++ b/include/tools_share/uuid.h
@@ -48,9 +48,9 @@
* A DCE 1.1 compatible source representation of UUIDs.
*/
struct uuid {
- uint32_t time_low;
- uint16_t time_mid;
- uint16_t time_hi_and_version;
+ uint8_t time_low[4];
+ uint8_t time_mid[2];
+ uint8_t time_hi_and_version[2];
uint8_t clock_seq_hi_and_reserved;
uint8_t clock_seq_low;
uint8_t node[_UUID_NODE_LEN];