Skip to content

Commit

Permalink
MythPlayer: Squash a shadow warning
Browse files Browse the repository at this point in the history
  • Loading branch information
mark-kendall committed Mar 19, 2019
1 parent 2a76526 commit 3a1a273
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions mythtv/libs/libmythtv/mythplayer.cpp
Expand Up @@ -3890,7 +3890,7 @@ bool MythPlayer::DecoderGetFrame(DecodeType decodetype, bool unsafe)
*
* \note The caller must hold decoder_change_lock.
*/
bool MythPlayer::DoGetFrame(DecodeType DecodeType)
bool MythPlayer::DoGetFrame(DecodeType Type)
{
bool ret = false;
QElapsedTimer timeout;
Expand All @@ -3900,7 +3900,7 @@ bool MythPlayer::DoGetFrame(DecodeType DecodeType)
while (retry && !pauseDecoder && !killdecoder && !timeout.hasExpired(5000))
{
retry = false;
ret = decoder->GetFrame(DecodeType, retry);
ret = decoder->GetFrame(Type, retry);
if (retry)
{
decoder_change_lock.unlock();
Expand Down

0 comments on commit 3a1a273

Please sign in to comment.