X-Git-Url: http://git.efficios.com/?p=babeltrace.git;a=blobdiff_plain;f=plugins%2Flttng-utils%2Fplugin.c;h=ae1648a348d834d352eeb37e3401e8eddb31b43e;hp=7d24bf5666ddd03b223bf26e14e9ceb267a1c39d;hb=40f4ba76dd6f9508ca51b6220eaed57632281a07;hpb=05e2128659970c32648a01255ed870449f05d518 diff --git a/plugins/lttng-utils/plugin.c b/plugins/lttng-utils/plugin.c index 7d24bf56..ae1648a3 100644 --- a/plugins/lttng-utils/plugin.c +++ b/plugins/lttng-utils/plugin.c @@ -114,9 +114,9 @@ struct bt_notification *handle_notification(FILE *err, switch (bt_notification_get_type(notification)) { case BT_NOTIFICATION_TYPE_PACKET_BEGIN: { - struct bt_packet *packet = + const struct bt_packet *packet = bt_notification_packet_begin_get_packet(notification); - struct bt_packet *writer_packet; + const struct bt_packet *writer_packet; if (!packet) { goto end; @@ -133,9 +133,9 @@ struct bt_notification *handle_notification(FILE *err, } case BT_NOTIFICATION_TYPE_PACKET_END: { - struct bt_packet *packet = + const struct bt_packet *packet = bt_notification_packet_end_get_packet(notification); - struct bt_packet *writer_packet; + const struct bt_packet *writer_packet; if (!packet) { goto end; @@ -152,9 +152,9 @@ struct bt_notification *handle_notification(FILE *err, } case BT_NOTIFICATION_TYPE_EVENT: { - struct bt_event *event = bt_notification_event_get_event( + const struct bt_event *event = bt_notification_event_get_event( notification); - struct bt_event *writer_event; + const struct bt_event *writer_event; struct bt_clock_class_priority_map *cc_prio_map = bt_notification_event_get_clock_class_priority_map( notification); @@ -174,9 +174,9 @@ struct bt_notification *handle_notification(FILE *err, } case BT_NOTIFICATION_TYPE_STREAM_BEGIN: { - struct bt_stream *stream = + const struct bt_stream *stream = bt_notification_stream_begin_get_stream(notification); - struct bt_stream *writer_stream; + const struct bt_stream *writer_stream; if (!stream) { goto end; @@ -193,9 +193,9 @@ struct bt_notification *handle_notification(FILE *err, } case BT_NOTIFICATION_TYPE_STREAM_END: { - struct bt_stream *stream = + const struct bt_stream *stream = bt_notification_stream_end_get_stream(notification); - struct bt_stream *writer_stream; + const struct bt_stream *writer_stream; if (!stream) { goto end;