From 48dff3ac9236297be50244d9d3c85df12e64ee76 Mon Sep 17 00:00:00 2001 From: Mathieu Desnoyers Date: Fri, 11 Dec 2020 10:55:02 -0500 Subject: [PATCH] ustctl.h: use enumeration values 0, 1 for bitness Signed-off-by: Mathieu Desnoyers Change-Id: I915d3bad476f1b11b3c972f6bb60162f3f93d519 --- include/lttng/ust-ctl.h | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/include/lttng/ust-ctl.h b/include/lttng/ust-ctl.h index 2c15a54e..019cb08f 100644 --- a/include/lttng/ust-ctl.h +++ b/include/lttng/ust-ctl.h @@ -597,8 +597,8 @@ int ustctl_reply_register_channel(int sock, */ enum ustctl_counter_bitness { - USTCTL_COUNTER_BITNESS_32 = 4, - USTCTL_COUNTER_BITNESS_64 = 8, + USTCTL_COUNTER_BITNESS_32 = 0, + USTCTL_COUNTER_BITNESS_64 = 1, }; enum ustctl_counter_arithmetic { -- 2.34.1