X-Git-Url: http://drtracing.org/?a=blobdiff_plain;f=src%2Flib%2Fvalue.c;h=c4e38f9b023f1b0ef65fece06179790191e47107;hb=97ff2fba0add4ad5cde3fde726752434b2f00779;hp=5e26fddfb0ea5e2bdc7771c21fd3c176a646018b;hpb=0c9c6021aa88e2c9d19b18015e591c9db0d14ff6;p=babeltrace.git diff --git a/src/lib/value.c b/src/lib/value.c index 5e26fddf..c4e38f9b 100644 --- a/src/lib/value.c +++ b/src/lib/value.c @@ -829,7 +829,6 @@ int64_t bt_value_integer_signed_get(const struct bt_value *integer_obj) static inline void set_integer_value(struct bt_value *integer_obj, - enum bt_value_type expected_type __attribute__((unused)), uint64_t uval, const char *api_func) { @@ -843,8 +842,7 @@ void bt_value_integer_unsigned_set(struct bt_value *integer_obj, { BT_ASSERT_PRE_VALUE_NON_NULL(integer_obj); BT_ASSERT_PRE_VALUE_IS_UNSIGNED_INT(integer_obj); - set_integer_value(integer_obj, BT_VALUE_TYPE_UNSIGNED_INTEGER, val, - __func__); + set_integer_value(integer_obj, val, __func__); BT_LOGT("Set unsigned integer value's raw value: " "value-addr=%p, value=%" PRIu64, integer_obj, val); } @@ -855,8 +853,7 @@ void bt_value_integer_signed_set(struct bt_value *integer_obj, { BT_ASSERT_PRE_VALUE_NON_NULL(integer_obj); BT_ASSERT_PRE_VALUE_IS_SIGNED_INT(integer_obj); - set_integer_value(integer_obj, BT_VALUE_TYPE_SIGNED_INTEGER, - (uint64_t) val, __func__); + set_integer_value(integer_obj, (uint64_t) val, __func__); BT_LOGT("Set signed integer value's raw value: " "value-addr=%p, value=%" PRId64, integer_obj, val); }