From 13bdb81c99ef4350c0cb1eb88e95cf73fb4b56e4 Mon Sep 17 00:00:00 2001 From: Simon Marchi Date: Wed, 31 Mar 2021 15:08:05 -0400 Subject: [PATCH 1/1] Clean-up: lttng-sessiond: fix -Wshadow error in check_session_rotation_pending MIME-Version: 1.0 Content-Type: text/plain; charset=utf8 Content-Transfer-Encoding: 8bit We can safely re-use the variable at function scope. Change-Id: I2f9440c676a5458a063212d7143b0b69635fec87 Signed-off-by: Simon Marchi Signed-off-by: Jérémie Galarneau --- src/bin/lttng-sessiond/rotation-thread.c | 2 -- 1 file changed, 2 deletions(-) diff --git a/src/bin/lttng-sessiond/rotation-thread.c b/src/bin/lttng-sessiond/rotation-thread.c index 81cdb75d8..31e651136 100644 --- a/src/bin/lttng-sessiond/rotation-thread.c +++ b/src/bin/lttng-sessiond/rotation-thread.c @@ -494,8 +494,6 @@ int check_session_rotation_pending(struct ltt_session *session, ret = 0; check_ongoing_rotation: if (session->rotation_state == LTTNG_ROTATION_STATE_ONGOING) { - uint64_t chunk_being_archived_id; - chunk_status = lttng_trace_chunk_get_id( session->chunk_being_archived, &chunk_being_archived_id); -- 2.34.1