From 6bf04a56980eca8688fc8b691ed4fc5bca4ae8d3 Mon Sep 17 00:00:00 2001 From: Carl Hetherington Date: Tue, 2 Nov 2021 15:07:53 +0100 Subject: [PATCH] Cleanup variable name: k -> reel --- src/lib/player.cc | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/lib/player.cc b/src/lib/player.cc index 5404dfac4..2669b350f 100644 --- a/src/lib/player.cc +++ b/src/lib/player.cc @@ -582,9 +582,9 @@ Player::get_reel_assets () int64_t offset_from_start = 0; /* position i the asset from the end */ int64_t offset_from_end = 0; - for (auto k: decoder->reels()) { + for (auto reel: decoder->reels()) { /* Assume that main picture duration is the length of the reel */ - offset_from_end += k->main_picture()->actual_duration(); + offset_from_end += reel->main_picture()->actual_duration(); } for (auto reel: decoder->reels()) { -- 2.30.2