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.13.5~18 X-Git-Url: https://git.lttng.org/?p=lttng-tools.git;a=commitdiff_plain;h=acb26e636f4bbf703ea1172a31cd0f9648bbd721 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 8a68c11b3..7888d38f2 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;