Skip to content

Commit

Permalink
Fix clang-tidy warnings.
Browse files Browse the repository at this point in the history
  • Loading branch information
kmdewaal committed Dec 21, 2023
1 parent 856c0ab commit a54b43e
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions mythtv/libs/libmythtv/tv_rec.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -1081,7 +1081,7 @@ void TVRec::HandleStateChange(void)
s_eitLock.lock();
for (auto input : m_eitInputs)
{
auto tv_rec = s_inputs.value(input);
auto *tv_rec = s_inputs.value(input);
if (tv_rec && tv_rec->m_scanner && tv_rec->HasFlags(kFlagEITScannerRunning))
{
LOG(VB_EIT, LOG_INFO, LOC +
Expand Down Expand Up @@ -1536,7 +1536,7 @@ void TVRec::run(void)
{
for (auto input : inputids)
{
auto tv_rec = s_inputs.value(input);
auto *tv_rec = s_inputs.value(input);
if (tv_rec && tv_rec->m_scanner)
{
conflicting_input = true;
Expand Down

0 comments on commit a54b43e

Please sign in to comment.