1
0
mirror of https://github.com/cookiengineer/audacity synced 2025-10-13 14:13:32 +02:00

Type agnosticism for some other variables that were not sampleCount...

... in some cases, this fixes narrowings.
This commit is contained in:
Paul Licameli
2016-08-24 07:56:33 -04:00
parent 79c79f9cd3
commit fd2b050d6f
16 changed files with 26 additions and 29 deletions

View File

@@ -448,7 +448,7 @@ int PCMImportFileHandle::Import(TrackFactory *trackFactory,
SampleBuffer buffer(maxBlock, mFormat);
unsigned long framescompleted = 0;
decltype(fileTotalFrames) framescompleted = 0;
long block;
do {