lib: private functions: do not repeat `private` word
[babeltrace.git] / plugins / utils / trimmer / trimmer.c
index 777b14fac3c74f2d4a077968c4a288401a886d0e..0aa747583c4154c49e2236a7ca08368ad922b936 100644 (file)
@@ -357,13 +357,13 @@ enum bt_component_status trimmer_component_init(
        }
 
        /* Create input and output ports */
-       ret = bt_private_component_filter_add_input_private_port(
+       ret = bt_private_component_filter_add_input_port(
                component, "in", NULL, NULL);
        if (ret != BT_COMPONENT_STATUS_OK) {
                goto error;
        }
 
-       ret = bt_private_component_filter_add_output_private_port(
+       ret = bt_private_component_filter_add_output_port(
                component, "out", NULL, NULL);
        if (ret != BT_COMPONENT_STATUS_OK) {
                goto error;
This page took 0.032508 seconds and 4 git commands to generate.