From bab308e25fe3c86e385e22618cb64e68e6cf0dea Mon Sep 17 00:00:00 2001 From: David Goulet Date: Mon, 24 Sep 2012 17:45:38 -0400 Subject: [PATCH] Fix: Change the type of enabled in lttng_event to a signed int Closes #258 Signed-off-by: David Goulet --- include/lttng/lttng.h | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/include/lttng/lttng.h b/include/lttng/lttng.h index f621fa80d..c79042bf4 100644 --- a/include/lttng/lttng.h +++ b/include/lttng/lttng.h @@ -214,7 +214,7 @@ struct lttng_event { enum lttng_loglevel_type loglevel_type; int loglevel; - uint32_t enabled; + int32_t enabled; pid_t pid; char padding[LTTNG_EVENT_PADDING1]; -- 2.34.1