1
0
mirror of https://github.com/cookiengineer/audacity synced 2026-04-29 01:05:35 +02:00

Cleanup: Fixed lots of trivial MSVC warnings.

This commit is contained in:
james.k.crook@gmail.com
2013-08-25 21:51:26 +00:00
parent 969122a985
commit dba81b3f1c
108 changed files with 571 additions and 569 deletions

View File

@@ -139,6 +139,7 @@ static void ExtractFloats(bool doublePrec,
double d;
} u;
u.d = 0.0f;
while (rawCount + 7 < dataSize) {
if (swap)
for(i=0; i<8; i++)
@@ -157,6 +158,7 @@ static void ExtractFloats(bool doublePrec,
float f;
} u;
u.f = 0.0f;
while (rawCount + 3 < dataSize) {
if (swap)
for(i=0; i<4; i++)