mirror of
https://github.com/cookiengineer/audacity
synced 2025-12-12 07:36:24 +01:00
Fix a compiler warning.
This commit is contained in:
@@ -114,7 +114,7 @@ void ODDecodeTask::CalculatePercentComplete()
|
|||||||
|
|
||||||
bool ODDecodeTask::SeekingAllowed()
|
bool ODDecodeTask::SeekingAllowed()
|
||||||
{
|
{
|
||||||
for(int i=0;i<mDecoders.size();i++) {
|
for (unsigned int i = 0; i < mDecoders.size(); i++) {
|
||||||
if(!mDecoders[i]->SeekingAllowed())
|
if(!mDecoders[i]->SeekingAllowed())
|
||||||
return false;
|
return false;
|
||||||
}
|
}
|
||||||
|
|||||||
Reference in New Issue
Block a user