1
0
mirror of https://github.com/cookiengineer/audacity synced 2025-08-16 08:34:10 +02:00

fixed a signed vs. unsigned warning in src/AudioIO.cpp

This commit is contained in:
andheh 2018-02-15 13:01:53 +01:00 committed by James Crook
parent 1efe69e8b9
commit 3dd0ce0459

View File

@ -4020,7 +4020,7 @@ void AudioIO::FillBuffers()
AutoSaveFile blockFileLog;
auto numChannels = mCaptureTracks.size();
for( i = 0; (int)i < numChannels; i++ )
for( i = 0; i < numChannels; i++ )
{
auto avail = commonlyAvail;
sampleFormat trackFormat = mCaptureTracks[i]->GetSampleFormat();