X-Git-Url: http://git.liburcu.org/?a=blobdiff_plain;f=include%2Flttng%2Fust-tracepoint-event.h;h=f898523c6d90004d796f7d6b314a61f742dbf1fd;hb=73d2b7cba6bc5c468190cfba5290d0002a3d23ab;hp=a470e8cdebb6d626f70814584523986400406ab1;hpb=f476594bd7211c08ef13a71ddd73c93e6fc8aa72;p=lttng-ust.git diff --git a/include/lttng/ust-tracepoint-event.h b/include/lttng/ust-tracepoint-event.h index a470e8cd..f898523c 100644 --- a/include/lttng/ust-tracepoint-event.h +++ b/include/lttng/ust-tracepoint-event.h @@ -132,14 +132,14 @@ static const char \ #define ctf_enum_value(_string, _value) \ { \ .start = { \ - .signedness = lttng_is_signed_type(__typeof__(_value)), \ .value = lttng_is_signed_type(__typeof__(_value)) ? \ (long long) (_value) : (_value), \ + .signedness = lttng_is_signed_type(__typeof__(_value)), \ }, \ .end = { \ - .signedness = lttng_is_signed_type(__typeof__(_value)), \ .value = lttng_is_signed_type(__typeof__(_value)) ? \ (long long) (_value) : (_value), \ + .signedness = lttng_is_signed_type(__typeof__(_value)), \ }, \ .string = (_string), \ }, @@ -149,14 +149,14 @@ static const char \ #define ctf_enum_range(_string, _range_start, _range_end) \ { \ .start = { \ - .signedness = lttng_is_signed_type(__typeof__(_range_start)), \ .value = lttng_is_signed_type(__typeof__(_range_start)) ? \ (long long) (_range_start) : (_range_start), \ + .signedness = lttng_is_signed_type(__typeof__(_range_start)), \ }, \ .end = { \ - .signedness = lttng_is_signed_type(__typeof__(_range_end)), \ .value = lttng_is_signed_type(__typeof__(_range_end)) ? \ (long long) (_range_end) : (_range_end), \ + .signedness = lttng_is_signed_type(__typeof__(_range_end)), \ }, \ .string = (_string), \ },