From: Jérémie Galarneau Date: Mon, 7 Mar 2022 20:17:53 +0000 (-0500) Subject: Build fix: relayd: mismatching function signatures X-Git-Tag: v2.12.9~12 X-Git-Url: https://git.liburcu.org/?p=lttng-tools.git;a=commitdiff_plain;h=bfcd0061ccf63b76a502f43a199200b6ccab880f Build fix: relayd: mismatching function signatures Signed-off-by: Jérémie Galarneau Change-Id: I4ba2e7cacbe4357ad0cdbe1dc2c85894f8bedc27 --- diff --git a/src/bin/lttng-relayd/session.c b/src/bin/lttng-relayd/session.c index 95bdf3ad0..7cc615320 100644 --- a/src/bin/lttng-relayd/session.c +++ b/src/bin/lttng-relayd/session.c @@ -480,7 +480,7 @@ end: * * The caller must hold the lock of session. */ -bool session_has_ongoing_rotation(const struct relay_session *session) +bool session_has_ongoing_rotation(struct relay_session *session) { bool ongoing_rotation = false; struct lttng_ht_iter iter;