diff options
Diffstat (limited to 'src/regexp_nfa.c')
-rw-r--r-- | src/regexp_nfa.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/regexp_nfa.c b/src/regexp_nfa.c index bdcfa1890d..bd4f0ed868 100644 --- a/src/regexp_nfa.c +++ b/src/regexp_nfa.c @@ -2363,7 +2363,7 @@ static void nfa_print_state(FILE *debugf, nfa_state_T *state) { garray_T indent; - ga_init2(&indent, 1, 64); + ga_init(&indent, 1, 64); ga_append(&indent, '\0'); nfa_print_state2(debugf, state, &indent); ga_clear(&indent); |