aboutsummaryrefslogtreecommitdiff
path: root/src/charset.c
diff options
context:
space:
mode:
authorJohn Schmidt <john.schmidt.h@gmail.com>2014-03-31 17:19:54 +0200
committerThiago de Arruda <tpadilha84@gmail.com>2014-03-31 14:42:11 -0300
commit5d30654512f1e40479e32f2c02a59fa84bb9118f (patch)
tree0fa1ebaeff8a77e39957ae9b285e1dd4e671e23b /src/charset.c
parente02790cad4b1ede5b32a1d77cabe40dd088ba4c0 (diff)
downloadrneovim-5d30654512f1e40479e32f2c02a59fa84bb9118f.tar.gz
rneovim-5d30654512f1e40479e32f2c02a59fa84bb9118f.tar.bz2
rneovim-5d30654512f1e40479e32f2c02a59fa84bb9118f.zip
Rename ga_init2() to ga_init()
Diffstat (limited to 'src/charset.c')
-rw-r--r--src/charset.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/charset.c b/src/charset.c
index a0514cf5b0..0aabacd0b6 100644
--- a/src/charset.c
+++ b/src/charset.c
@@ -422,7 +422,7 @@ char_u* str_foldcase(char_u *str, int orglen, char_u *buf, int buflen)
// Copy "str" into "buf" or allocated memory, unmodified.
if (buf == NULL) {
- ga_init2(&ga, 1, 10);
+ ga_init(&ga, 1, 10);
if (ga_grow(&ga, len + 1) == FAIL) {
return NULL;