Rename *create_iterator*() -> *create_notification_iterator*()
[babeltrace.git] / converter / babeltrace.c
index 0407fb2d22ca03ff6b60b1cb97641bec7049aaf3..131a3c04b78c75d76c09bc0c91f5e638db41b594 100644 (file)
@@ -400,7 +400,7 @@ int connect_source_sink(struct bt_component *source,
        struct bt_notification_iterator *source_it = NULL;
        struct bt_notification_iterator *to_sink_it = NULL;
 
-       source_it = bt_component_source_create_iterator(source);
+       source_it = bt_component_source_create_notification_iterator(source);
        if (!source_it) {
                fprintf(stderr, "Failed to instantiate source iterator. Aborting...\n");
                 ret = -1;
@@ -428,7 +428,7 @@ int connect_source_sink(struct bt_component *source,
                        goto end;
                }
 
-               to_sink_it = bt_component_filter_create_iterator(trimmer);
+               to_sink_it = bt_component_filter_create_notification_iterator(trimmer);
                if (!to_sink_it) {
                        fprintf(stderr, "Failed to instantiate trimmer iterator. Aborting...\n");
                        ret = -1;
This page took 0.022792 seconds and 4 git commands to generate.