Fix: signedness error in python complements
[babeltrace.git] / bindings / python / babeltrace / python-complements.c
index b9a11f1410d880cee18e777b3e8846269ce938b0..d40a1c5823d8b6d68d594cf11262749ec6899170 100644 (file)
@@ -19,8 +19,8 @@
  */
 
 #include "python-complements.h"
-#include <babeltrace/ctf-writer/event-types-internal.h>
-#include <babeltrace/ctf-writer/event-fields-internal.h>
+#include <babeltrace/ctf-ir/field-types-internal.h>
+#include <babeltrace/ctf-ir/fields-internal.h>
 #include <babeltrace/iterator.h>
 #include <babeltrace/ctf/iterator.h>
 #include <babeltrace/ctf/events-internal.h>
@@ -264,7 +264,7 @@ struct bt_ctf_iter *_bt_python_ctf_iter_create_intersect(
 int _bt_python_trace_collection_has_intersection(struct bt_context *ctx)
 {
        int ret;
-       int64_t begin, end;
+       uint64_t begin, end;
 
        ret = ctf_find_tc_stream_packet_intersection_union(ctx, &begin, &end);
 
This page took 0.023155 seconds and 4 git commands to generate.