Change UUID API prefix from babeltrace_ to bt_
[babeltrace.git] / formats / ctf / ctf.c
index 19f61b580ef6318b555fc3885defafc3be337bc5..3194cfdf394f71c4ed2ecb7fc6c2d411e1992625 100644 (file)
@@ -1107,7 +1107,7 @@ int ctf_trace_metadata_packet_read(struct ctf_trace *td, FILE *in,
                memcpy(td->uuid, header.uuid, sizeof(header.uuid));
                CTF_TRACE_SET_FIELD(td, uuid);
        } else {
-               if (babeltrace_uuid_compare(header.uuid, td->uuid))
+               if (bt_uuid_compare(header.uuid, td->uuid))
                        return -EINVAL;
        }
 
@@ -1593,7 +1593,7 @@ begin:
                                elem = bt_array_index(defarray, i);
                                uuidval[i] = bt_get_unsigned_int(elem);
                        }
-                       ret = babeltrace_uuid_compare(td->uuid, uuidval);
+                       ret = bt_uuid_compare(td->uuid, uuidval);
                        if (ret) {
                                fprintf(stderr, "[error] Unique Universal Identifiers do not match.\n");
                                return -EINVAL;
This page took 0.02319 seconds and 4 git commands to generate.