From: Danny Serres Date: Fri, 8 Jun 2012 14:19:08 +0000 (-0400) Subject: Fix: Change the type of enabled in lttng_event to a signed int X-Git-Tag: v2.1.0-rc1~113 X-Git-Url: https://git.lttng.org/?p=lttng-tools.git;a=commitdiff_plain;h=35dc4d6200993ae05e1c7d19452c7d8d4fa72e27;hp=f1e1679499bf3e76127c8812c72a6e9ba69e02e5 Fix: Change the type of enabled in lttng_event to a signed int Signed-off-by: Danny Serres Signed-off-by: David Goulet --- diff --git a/include/lttng/lttng.h b/include/lttng/lttng.h index 3b1be6197..c80e2827e 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; /* Does not apply: -1 */ pid_t pid; char padding[LTTNG_EVENT_PADDING1];