lib: bt_object_{get,put}_ref(): accept a `const` parameter
[babeltrace.git] / cli / babeltrace-cfg.h
index d5559cae2b1d41a4f8e0333aa149f6e0f54e8423..d72348d38da2a5b9b070937874d55e1156f032f2 100644 (file)
@@ -129,11 +129,14 @@ static inline
 struct bt_config_component *bt_config_get_component(GPtrArray *array,
                size_t index)
 {
-       return bt_object_get_ref(g_ptr_array_index(array, index));
+       struct bt_config_component *comp = g_ptr_array_index(array, index);
+
+       bt_object_get_ref(comp);
+       return comp;
 }
 
-enum bt_value_status bt_config_append_plugin_paths(
-               struct bt_private_value *plugin_paths, const char *arg);
+int bt_config_append_plugin_paths(struct bt_private_value *plugin_paths,
+               const char *arg);
 
 void bt_config_connection_destroy(struct bt_config_connection *connection);
 
This page took 0.038134 seconds and 4 git commands to generate.