Replace assert() -> BT_ASSERT() and some preconditions with BT_ASSERT_PRE()
[babeltrace.git] / include / babeltrace / graph / component-internal.h
index 8d3f73a91abd66aebbfc204b9a5e249338e5e83c..540faf4c5d5333ce79a1d7a535aee43dab815368 100644 (file)
@@ -33,6 +33,7 @@
 #include <babeltrace/graph/port-internal.h>
 #include <babeltrace/object-internal.h>
 #include <babeltrace/types.h>
+#include <babeltrace/assert-internal.h>
 #include <glib.h>
 #include <stdio.h>
 
@@ -85,7 +86,7 @@ struct bt_private_component *bt_private_component_from_component(
 static inline
 struct bt_graph *bt_component_borrow_graph(struct bt_component *comp)
 {
-       assert(comp);
+       BT_ASSERT(comp);
        return (void *) comp->base.parent;
 }
 
This page took 0.024015 seconds and 4 git commands to generate.