From 7d91f1ac08c6021842ae28aaf3b5c93a8184b0f5 Mon Sep 17 00:00:00 2001 From: Simon Marchi Date: Thu, 2 Nov 2023 19:49:33 +0000 Subject: [PATCH] src.ctf.lttng-live: remove unused parameter from live_get_msg_ts_ns Change-Id: I5cd8569817f83b080af0ca0ff9fdb9218d3f5b13 Signed-off-by: Simon Marchi Reviewed-on: https://review.lttng.org/c/babeltrace/+/11213 Reviewed-by: Philippe Proulx --- src/plugins/ctf/lttng-live/lttng-live.cpp | 13 +++++-------- 1 file changed, 5 insertions(+), 8 deletions(-) diff --git a/src/plugins/ctf/lttng-live/lttng-live.cpp b/src/plugins/ctf/lttng-live/lttng-live.cpp index 02900df4..0ea15c76 100644 --- a/src/plugins/ctf/lttng-live/lttng-live.cpp +++ b/src/plugins/ctf/lttng-live/lttng-live.cpp @@ -720,8 +720,7 @@ end: return ret; } -static int live_get_msg_ts_ns(struct lttng_live_stream_iterator *, - struct lttng_live_msg_iter *lttng_live_msg_iter, +static int live_get_msg_ts_ns(struct lttng_live_msg_iter *lttng_live_msg_iter, const bt_message *msg, int64_t last_msg_ts_ns, int64_t *ts_ns) { const bt_clock_snapshot *clock_snapshot = NULL; @@ -1282,8 +1281,8 @@ next_stream_iterator_for_trace(struct lttng_live_msg_iter *lttng_live_msg_iter, * Get the timestamp in nanoseconds from origin of this * messsage. */ - live_get_msg_ts_ns(stream_iter, lttng_live_msg_iter, msg, - lttng_live_msg_iter->last_msg_ts_ns, &curr_msg_ts_ns); + live_get_msg_ts_ns(lttng_live_msg_iter, msg, lttng_live_msg_iter->last_msg_ts_ns, + &curr_msg_ts_ns); /* * Check if the message of the current live stream @@ -1781,8 +1780,7 @@ end: bt_message_iterator_class_initialize_method_status lttng_live_msg_iter_init(bt_self_message_iterator *self_msg_it, - bt_self_message_iterator_configuration *, - bt_self_component_port_output *) + bt_self_message_iterator_configuration *, bt_self_component_port_output *) { bt_message_iterator_class_initialize_method_status status; struct lttng_live_component *lttng_live; @@ -2173,8 +2171,7 @@ end: bt_component_class_initialize_method_status lttng_live_component_init(bt_self_component_source *self_comp_src, - bt_self_component_source_configuration *, const bt_value *params, - void *) + bt_self_component_source_configuration *, const bt_value *params, void *) { struct lttng_live_component *lttng_live; bt_component_class_initialize_method_status ret; -- 2.34.1