Commit 49454c85 authored by Jan Kiene's avatar Jan Kiene
Browse files

fix warning on windows

parent 052b8a0d
Loading
Loading
Loading
Loading
Loading
+1 −1
Original line number Diff line number Diff line
@@ -1063,7 +1063,7 @@ static bool parseCmdlIVAS_dec(
            int16_t level;

            ++i;
            level = atoi( argv[i++] );
            level = (int16_t) atoi( argv[i++] );
            if ( level < IVAS_DEC_COMPLEXITY_LEVEL_ONE || level > IVAS_DEC_COMPLEXITY_LEVEL_THREE )
            {
                fprintf( stdout, "Invalid complexity level specified.\n" );
+1 −1
Original line number Diff line number Diff line
@@ -1208,7 +1208,7 @@ static bool parseCmdlIVAS_enc(
            int16_t level;

            ++i;
            level = atoi( argv[i++] );
            level = (int16_t) atoi( argv[i++] );
            if ( level < IVAS_ENC_COMPLEXITY_LEVEL_ONE || level > IVAS_ENC_COMPLEXITY_LEVEL_THREE )
            {
                fprintf( stdout, "Invalid complexity level specified.\n" );