Skip to content

Commit

Permalink
Address signedness gcc warning.
Browse files Browse the repository at this point in the history
  • Loading branch information
daniel-kristjansson committed Dec 4, 2012
1 parent 1c0a828 commit fbfd910
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion mythtv/libs/libmythtv/avformatdecoder.cpp
Expand Up @@ -4052,7 +4052,7 @@ int AvFormatDecoder::AutoSelectAudioTrack(void)
{
LOG(VB_AUDIO, LOG_WARNING, "No audio tracks matched the type filter, "
"so trying all tracks.");
for (int i = 0; i < atracks.size(); i++)
for (int i = 0; i < static_cast<int>(atracks.size()); i++)
ftype.push_back(i);
}

Expand Down

0 comments on commit fbfd910

Please sign in to comment.