lib: make graph API const-correct
[babeltrace.git] / plugins / lttng-utils / plugin.c
index ae1648a348d834d352eeb37e3401e8eddb31b43e..c3b24f3f5eea0e33fc85d6665f7c0e8117f0d5d1 100644 (file)
@@ -105,11 +105,11 @@ void debug_info_iterator_destroy(struct bt_self_notification_iterator *it)
 }
 
 static
-struct bt_notification *handle_notification(FILE *err,
+const struct bt_notification *handle_notification(FILE *err,
                struct debug_info_iterator *debug_it,
-               struct bt_notification *notification)
+               const struct bt_notification *notification)
 {
-       struct bt_notification *new_notification = NULL;
+       const struct bt_notification *new_notification = NULL;
 
        switch (bt_notification_get_type(notification)) {
        case BT_NOTIFICATION_TYPE_PACKET_BEGIN:
@@ -227,7 +227,7 @@ struct bt_notification_iterator_next_method_return debug_info_iterator_next(
        struct bt_self_component *component = NULL;
        struct debug_info_component *debug_info = NULL;
        struct bt_notification_iterator *source_it = NULL;
-       struct bt_notification *notification;
+       const struct bt_notification *notification;
        struct bt_notification_iterator_next_method_return ret = {
                .status = BT_NOTIFICATION_ITERATOR_STATUS_OK,
                .notification = NULL,
This page took 0.024343 seconds and 4 git commands to generate.