ustctl.h: use enumeration values 0, 1 for bitness
authorMathieu Desnoyers <mathieu.desnoyers@efficios.com>
Fri, 11 Dec 2020 15:55:02 +0000 (10:55 -0500)
committerMathieu Desnoyers <mathieu.desnoyers@efficios.com>
Fri, 11 Dec 2020 15:55:02 +0000 (10:55 -0500)
Signed-off-by: Mathieu Desnoyers <mathieu.desnoyers@efficios.com>
Change-Id: I915d3bad476f1b11b3c972f6bb60162f3f93d519

include/lttng/ust-ctl.h

index 2c15a54e550bd88e36d5c54b57dbe584a590a447..019cb08f0c635cc4a190f4fac0834c81b21d29b0 100644 (file)
@@ -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 {
This page took 0.026109 seconds and 5 git commands to generate.