Fix: bt2::CommonIntegerFieldClass::fieldValueRange(): use correct func.
authorPhilippe Proulx <eeppeliteloop@gmail.com>
Mon, 9 May 2022 19:33:39 +0000 (15:33 -0400)
committerPhilippe Proulx <eeppeliteloop@gmail.com>
Mon, 11 Sep 2023 15:24:02 +0000 (11:24 -0400)
Signed-off-by: Philippe Proulx <eeppeliteloop@gmail.com>
Change-Id: I38f60c9888e04b367806d54db9d7dc6f9bbb6579
Reviewed-on: https://review.lttng.org/c/babeltrace/+/8006
Reviewed-on: https://review.lttng.org/c/babeltrace/+/10789
Tested-by: jenkins <jenkins@lttng.org>
src/cpp-common/bt2/field-class.hpp

index a7ec01253dd43cc31f3216825bb2da9c554fe21f..8513c7952346f7a8e29b17541a0fcd1bbe39e8c6 100644 (file)
@@ -535,7 +535,7 @@ public:
     {
         static_assert(!std::is_const<LibObjT>::value, "`LibObjT` must NOT be `const`.");
 
-        bt_field_class_integer_get_field_value_range(this->libObjPtr(), n);
+        bt_field_class_integer_set_field_value_range(this->libObjPtr(), n);
     }
 
     std::uint64_t fieldValueRange() const noexcept
This page took 0.026778 seconds and 4 git commands to generate.