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 Aug 6, 2021
1 parent 2026896 commit c2cece0
Showing 1 changed file with 4 additions and 0 deletions.
4 changes: 4 additions & 0 deletions mythtv/programs/mythtv-setup/checksetup.cpp
Expand Up @@ -217,11 +217,15 @@ bool checkChannelPresets(QStringList &probs)
QString("start channel from %1 to %2 ").arg(startchan).arg(newchan) +
QString("for card %1 (%2)").arg(cardid).arg(query.value(3).toString());
if (stat)
{
LOG(VB_GENERAL, LOG_INFO,
QString("CheckSetup[%1]: ").arg(cardid) + "Changed " + msg);
}
else
{
LOG(VB_GENERAL, LOG_ERR,
QString("CheckSetup[%1]: ").arg(cardid) + "Failed to change " + msg);
}
}
}
else
Expand Down

0 comments on commit c2cece0

Please sign in to comment.