1
0
mirror of https://github.com/cookiengineer/audacity synced 2025-05-02 00:29:41 +02:00

Fix a compiler warning.

This commit is contained in:
v.audacity 2010-07-17 22:31:02 +00:00
parent ae85f055ac
commit cd96baaa4c

View File

@ -114,7 +114,7 @@ void ODDecodeTask::CalculatePercentComplete()
bool ODDecodeTask::SeekingAllowed()
{
for(int i=0;i<mDecoders.size();i++) {
for (unsigned int i = 0; i < mDecoders.size(); i++) {
if(!mDecoders[i]->SeekingAllowed())
return false;
}