Commit 5f91263c authored by thomas dettbarn's avatar thomas dettbarn
Browse files

Missing cast in ambi_converter.c caused a Compiler Warning on MSVC.

parent 2f1d8340
Loading
Loading
Loading
Loading
+1 −1
Original line number Diff line number Diff line
@@ -140,7 +140,7 @@ int main( int argc, char *argv[] )
            }
        }

        if ( ( err = convert_ambi_format( in, out, order, in_format, out_format, numSamples / numChannels ) ) != 0 )
        if ( ( err = convert_ambi_format( in, out, order, in_format, out_format, (const uint16_t) ( numSamples / numChannels ) ) ) != 0 )
        {
            printf( "Error converting the input signal!\n" );
            return err;