Commit 87262f68 authored by Jan Kiene's avatar Jan Kiene
Browse files

correct variable type + for -> FOR

parent ad980d66
Loading
Loading
Loading
Loading
Loading
+3 −3
Original line number Diff line number Diff line
@@ -3826,7 +3826,7 @@ static ivas_error findFreeInputSlot_fx(
    Word32 i;
    bool canAddInput;
#ifndef CODE_IMPROVEMENTS
    const uint8_t *pByte;
    const UWord8 *pByte;
#endif
    const input_base *pInputBase;

@@ -3835,9 +3835,9 @@ static ivas_error findFreeInputSlot_fx(

    /* Find first unused input in array */
#ifdef CODE_IMPROVEMENTS
    for ( i = 0; i < maxInputs; ++i )
    FOR( i = 0; i < maxInputs; ++i )
#else
    for ( i = 0, pByte = inputs; i < maxInputs; ++i, pByte += inputStructSize )
    FOR( i = 0, pByte = inputs; i < maxInputs; ++i, pByte += inputStructSize )
#endif
    {
#ifdef CODE_IMPROVEMENTS