diff options
Diffstat (limited to 'src/regexp_nfa.c')
-rw-r--r-- | src/regexp_nfa.c | 9 |
1 files changed, 5 insertions, 4 deletions
diff --git a/src/regexp_nfa.c b/src/regexp_nfa.c index 619cd15d2..92475ad94 100644 --- a/src/regexp_nfa.c +++ b/src/regexp_nfa.c @@ -5799,10 +5799,11 @@ nfa_regmatch( goto theend; } -#define ADD_STATE_IF_MATCH(state) \ - if (result) { \ - add_state = state->out; \ - add_off = clen; \ +#define ADD_STATE_IF_MATCH(state) \ + if (result) \ + { \ + add_state = state->out; \ + add_off = clen; \ } /* |