Commit ef8361b0 authored by Jan Kiene's avatar Jan Kiene
Browse files

fix compilation

parent 5a3ac6ea
Loading
Loading
Loading
Loading
Loading
+1 −1
Original line number Diff line number Diff line
@@ -2037,7 +2037,7 @@ static ivas_error initOnFirstGoodFrame(
    }

#ifdef CODE_IMPROVEMENTS
    int16_t *zeroBuf = calloc( pcmFrameSize * sizeof( int16_t ) );
    int16_t *zeroBuf = calloc( pcmFrameSize, sizeof( int16_t ) );
#else
    int16_t *zeroBuf = malloc( pcmFrameSize * sizeof( int16_t ) );
    memset( zeroBuf, 0, pcmFrameSize * sizeof( int16_t ) );