aboutsummaryrefslogtreecommitdiff
path: root/src/regexp_nfa.c
diff options
context:
space:
mode:
authorFelipe Oliveira Carvalho <felipekde@gmail.com>2014-03-26 17:31:13 -0300
committerThiago de Arruda <tpadilha84@gmail.com>2014-03-26 18:29:17 -0300
commitf8432ef127c0d84bc89ef604dfd6b619acd89c3b (patch)
tree9452aa3b53d877517585166c2cebaaef8606c41e /src/regexp_nfa.c
parent580ababcb5b822aaf938defa38a0ffd5511f0d65 (diff)
downloadrneovim-f8432ef127c0d84bc89ef604dfd6b619acd89c3b.tar.gz
rneovim-f8432ef127c0d84bc89ef604dfd6b619acd89c3b.tar.bz2
rneovim-f8432ef127c0d84bc89ef604dfd6b619acd89c3b.zip
Use realloc instead of vim_realloc
Diffstat (limited to 'src/regexp_nfa.c')
-rw-r--r--src/regexp_nfa.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/regexp_nfa.c b/src/regexp_nfa.c
index 5f1aeeaadb..74e2f61e76 100644
--- a/src/regexp_nfa.c
+++ b/src/regexp_nfa.c
@@ -3963,7 +3963,7 @@ skip_add:
subs = &temp_subs;
}
- l->t = vim_realloc(l->t, newlen * sizeof(nfa_thread_T));
+ l->t = realloc(l->t, newlen * sizeof(nfa_thread_T));
l->len = newlen;
}