Commit 30f3b2de authored by thomas dettbarn's avatar thomas dettbarn
Browse files

Removed a warning in the main() function of the ambi_converter, where a 16 bit...

Removed a warning in the main() function of the ambi_converter, where a 16 bit value was compared to a 32 bit value.
parent efa0e3fd
Loading
Loading
Loading
Loading
Loading
+2 −2
Original line number Diff line number Diff line
@@ -128,7 +128,7 @@ int main( int argc, char *argv[] )
            break;
        }

        for ( uint16_t i = 0; i < numSamplesRead32 / numChannels; i++ )
        for ( uint16_t i = 0; i < (uint16_t)numSamplesRead32 / numChannels; i++ )
        {
            for ( int16_t j = 0; j < numChannels; j++ )
            {
@@ -148,7 +148,7 @@ int main( int argc, char *argv[] )
        }


        for ( uint16_t i = 0; i < numSamplesRead32 / numChannels; i++ )
        for ( uint16_t i = 0; i < (uint16_t)numSamplesRead32 / numChannels; i++ )
        {
            for ( int16_t j = 0; j < numChannels; j++ )
            {