mirror of
https://github.com/cookiengineer/audacity
synced 2025-09-18 17:10:55 +02:00
Fix a compiler warning.
This commit is contained in:
parent
ae85f055ac
commit
cd96baaa4c
@ -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;
|
||||||
}
|
}
|
||||||
|
Loading…
x
Reference in New Issue
Block a user