From: Jérémie Galarneau Date: Mon, 7 Mar 2016 22:13:53 +0000 (-0500) Subject: Change padding type from array to fixed-width integer X-Git-Tag: v2.8.0-rc1~112 X-Git-Url: https://git.lttng.org/?p=lttng-tools.git;a=commitdiff_plain;h=4829ae55233bf50132357078912ce369e660ba18;ds=sidebyside Change padding type from array to fixed-width integer Signed-off-by: Jérémie Galarneau --- diff --git a/include/lttng/event.h b/include/lttng/event.h index bf37a1167..a97f8ffaa 100644 --- a/include/lttng/event.h +++ b/include/lttng/event.h @@ -261,7 +261,7 @@ struct lttng_event { /* Offset 288 */ union { - char padding[8]; + uint64_t padding; void *ptr; } extended;