Rename ga_init2() to ga_init()

This commit is contained in:
John Schmidt
2014-03-31 17:19:54 +02:00
committed by Thiago de Arruda
parent e02790cad4
commit 5d30654512
26 changed files with 79 additions and 79 deletions

View File

@@ -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);