flt.lttng-utils.debug-info: remove unused parameter from handle_msg_iterator_inactivity
authorSimon Marchi <simon.marchi@efficios.com>
Thu, 2 Nov 2023 19:51:08 +0000 (19:51 +0000)
committerPhilippe Proulx <eeppeliteloop@gmail.com>
Fri, 3 Nov 2023 18:56:03 +0000 (14:56 -0400)
Change-Id: I007b1d2a121ce1cf15abffda7485aaa396c3c7b2
Reviewed-on: https://review.lttng.org/c/babeltrace/+/11215
CI-Build: Simon Marchi <simon.marchi@efficios.com>
Reviewed-by: Philippe Proulx <eeppeliteloop@gmail.com>
src/plugins/lttng-utils/debug-info/debug-info.c

index 927ba7a8e391bd9c36f340938fa279b9c3dd5508..f8ef8182942cc161d0dc2b353c72db2390a9380d 100644 (file)
@@ -1510,9 +1510,7 @@ end:
 }
 
 static
-bt_message *handle_msg_iterator_inactivity(
-               struct debug_info_msg_iter *debug_it __attribute__((unused)),
-               const bt_message *in_message)
+bt_message *handle_msg_iterator_inactivity(const bt_message *in_message)
 {
        /*
         * This message type can be forwarded directly because it does
@@ -1665,7 +1663,7 @@ const bt_message *handle_message(struct debug_info_msg_iter *debug_it,
                out_message = handle_stream_end_message(debug_it, in_message);
                break;
        case BT_MESSAGE_TYPE_MESSAGE_ITERATOR_INACTIVITY:
-               out_message = handle_msg_iterator_inactivity(debug_it, in_message);
+               out_message = handle_msg_iterator_inactivity(in_message);
                break;
        case BT_MESSAGE_TYPE_DISCARDED_EVENTS:
                out_message = handle_discarded_events_message(debug_it, in_message);
This page took 0.028193 seconds and 4 git commands to generate.