diff options
author | John Schmidt <john.schmidt.h@gmail.com> | 2014-03-31 17:19:54 +0200 |
---|---|---|
committer | Thiago de Arruda <tpadilha84@gmail.com> | 2014-03-31 14:42:11 -0300 |
commit | 5d30654512f1e40479e32f2c02a59fa84bb9118f (patch) | |
tree | 0fa1ebaeff8a77e39957ae9b285e1dd4e671e23b /src/os/users.c | |
parent | e02790cad4b1ede5b32a1d77cabe40dd088ba4c0 (diff) | |
download | rneovim-5d30654512f1e40479e32f2c02a59fa84bb9118f.tar.gz rneovim-5d30654512f1e40479e32f2c02a59fa84bb9118f.tar.bz2 rneovim-5d30654512f1e40479e32f2c02a59fa84bb9118f.zip |
Rename ga_init2() to ga_init()
Diffstat (limited to 'src/os/users.c')
-rw-r--r-- | src/os/users.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/os/users.c b/src/os/users.c index 9e1389b994..c8c2e773de 100644 --- a/src/os/users.c +++ b/src/os/users.c @@ -16,7 +16,7 @@ int os_get_usernames(garray_T *users) if (users == NULL) { return FALSE; } - ga_init2(users, sizeof(char *), 20); + ga_init(users, sizeof(char *), 20); # if defined(HAVE_GETPWENT) && defined(HAVE_PWD_H) char *user; |