lib: graph API: remove "listener removed" callback parameters
[babeltrace.git] / tests / lib / test_graph_topo.c
index 184528d1a1a7b6b8fa09a7ead957e1258ebf6069..91e12760f12b503b6c203c5ee88e8b50698366aa 100644 (file)
@@ -401,10 +401,10 @@ bt_graph *create_graph(void)
 
        BT_ASSERT(graph);
        ret = bt_graph_add_source_component_output_port_added_listener(
-               graph, graph_src_output_port_added, NULL, NULL, NULL);
+               graph, graph_src_output_port_added, NULL, NULL);
        BT_ASSERT(ret >= 0);
        ret = bt_graph_add_sink_component_input_port_added_listener(
-               graph, graph_sink_input_port_added, NULL, NULL, NULL);
+               graph, graph_sink_input_port_added, NULL, NULL);
        BT_ASSERT(ret >= 0);
        return graph;
 }
This page took 0.02321 seconds and 4 git commands to generate.