Commit 20f53787 authored by sagnowski's avatar sagnowski
Browse files

Fix warning on Windows

parent f51fdfe4
Loading
Loading
Loading
Loading
Loading
+1 −1
Original line number Diff line number Diff line
@@ -258,7 +258,7 @@ int16_t JB4_INPUTBUFFER_Enque(
    {
        /* move lower elements to the left and insert before insertPos */
#ifdef FIX_520_REMOVE_MEMMOVE_JBM
        for ( int16_t j = 0; j < low; j++ )
        for ( j = 0; j < low; j++ )
        {
            h->data[h->readPos - 1 + j] = h->data[h->readPos + j];
        }