Fix: signedness error in python complements
authorJérémie Galarneau <jeremie.galarneau@efficios.com>
Thu, 1 Feb 2018 02:24:10 +0000 (21:24 -0500)
committerJérémie Galarneau <jeremie.galarneau@efficios.com>
Thu, 1 Feb 2018 02:24:10 +0000 (21:24 -0500)
Signed-off-by: Jérémie Galarneau <jeremie.galarneau@efficios.com>
bindings/python/babeltrace/python-complements.c

index d0daf34b410942d13803e45f5f0caccf9e4e8c0c..d40a1c5823d8b6d68d594cf11262749ec6899170 100644 (file)
@@ -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.024822 seconds and 4 git commands to generate.