lib: rename functions to clearly indicate API inheritance
[babeltrace.git] / src / plugins / utils / trimmer / trimmer.c
index 79ceed0a9a79bf5ab29d262fc217f5d757d27bf5..7cf741cf1ae0f0563b9f56f279a5e13b5156d83a 100644 (file)
@@ -445,7 +445,7 @@ int set_bound_from_param(struct trimmer_comp *trimmer_comp,
        char tmp_arg[64];
 
        if (bt_value_is_signed_integer(param)) {
-               int64_t value = bt_value_signed_integer_get(param);
+               int64_t value = bt_value_integer_signed_get(param);
 
                /*
                 * Just convert it to a temporary string to handle
@@ -1598,7 +1598,7 @@ bt_component_class_message_iterator_next_method_status handle_message(
        bt_component_class_message_iterator_next_method_status status;
        const bt_stream *stream = NULL;
        int64_t ns_from_origin = INT64_MIN;
-       bool has_ns_from_origin;
+       bool has_ns_from_origin = false;
        int ret;
 
        /* Find message's associated stream */
This page took 0.023084 seconds and 4 git commands to generate.