diff options
Diffstat (limited to 'libautomata_compile_mp_automaton.c')
| -rw-r--r-- | libautomata_compile_mp_automaton.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/libautomata_compile_mp_automaton.c b/libautomata_compile_mp_automaton.c index b9e8739..49cd33d 100644 --- a/libautomata_compile_mp_automaton.c +++ b/libautomata_compile_mp_automaton.c @@ -25,7 +25,7 @@ libautomata_compile_mp_automaton(const void *pattern, size_t length, size_t elem #define IMPLEMENT(EQ, EQ_PARAM, CASE)\ while (i < length) {\ - if (j != SIZE_MAX && !(EQ(EQ_PARAM)))\ + while (j != SIZE_MAX && !(EQ(EQ_PARAM)))\ j = ret->next[j];\ i++;\ j++;\ |
