From: David Goulet Date: Mon, 24 Sep 2012 21:45:38 +0000 (-0400) Subject: Fix: Change the type of enabled in lttng_event to a signed int X-Git-Tag: v2.0.5~1 X-Git-Url: http://git.lttng.org/?p=lttng-tools.git;a=commitdiff_plain;h=bab308e25fe3c86e385e22618cb64e68e6cf0dea Fix: Change the type of enabled in lttng_event to a signed int Closes #258 Signed-off-by: David Goulet --- 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];