From: Michael Jeanson Date: Wed, 6 May 2020 15:11:29 +0000 (-0400) Subject: fix: add missing guid_t type to wrapper X-Git-Tag: v2.13.0-rc1~228 X-Git-Url: http://git.liburcu.org/?p=lttng-modules.git;a=commitdiff_plain;h=6a009f4de0e2484eef6c60978b667e756a16cf71 fix: add missing guid_t type to wrapper Signed-off-by: Michael Jeanson Signed-off-by: Mathieu Desnoyers Change-Id: I0de39c24a7925b580fabbdaa12dbe05c43cfcd98 --- diff --git a/wrapper/uuid.h b/wrapper/uuid.h index 74946e23..d8ac53d3 100644 --- a/wrapper/uuid.h +++ b/wrapper/uuid.h @@ -18,6 +18,9 @@ void lttng_guid_gen(guid_t *u) return guid_gen(u); } #else /* #if (LINUX_VERSION_CODE >= KERNEL_VERSION(5,7,0)) */ + +typedef uuid_le guid_t; + static inline void lttng_guid_gen(guid_t *u) {