Fix uninitialized variables

This commit is contained in:
Jonas Kvinge
2021-03-26 21:30:13 +01:00
parent 8a39a43ad5
commit 14fb647647
27 changed files with 64 additions and 65 deletions

View File

@@ -141,7 +141,7 @@ int Analyzer::Base::resizeExponent(int exp) {
int Analyzer::Base::resizeForBands(int bands) {
int exp;
int exp = 0;
if (bands <= 8)
exp = 4;
else if (bands <= 16)