fix: use correct function to print 'enum bt_ctf_scope'
[babeltrace.git] / src / ctf-writer / utils.h
index 683905806ecec3f278bb08f3ea039bbc20c3d3ee..816c0ad6a53389ca4c908f124c1441f29f1446a1 100644 (file)
@@ -36,9 +36,6 @@ struct bt_ctf_search_query {
        int found;
 };
 
-BT_HIDDEN
-const char *bt_ctf_get_byte_order_string(enum bt_ctf_byte_order byte_order);
-
 static inline
 const char *bt_ctf_field_type_id_string(enum bt_ctf_field_type_id type_id)
 {
@@ -206,7 +203,7 @@ GString *bt_ctf_field_path_string(struct bt_ctf_field_path *path)
                goto end;
        }
 
-       g_string_append_printf(str, "[%s", bt_common_scope_string(
+       g_string_append_printf(str, "[%s", bt_ctf_scope_string(
                bt_ctf_field_path_get_root_scope(path)));
 
        for (i = 0; i < bt_ctf_field_path_get_index_count(path); i++) {
This page took 0.023305 seconds and 4 git commands to generate.