From 5d30654512f1e40479e32f2c02a59fa84bb9118f Mon Sep 17 00:00:00 2001 From: John Schmidt Date: Mon, 31 Mar 2014 17:19:54 +0200 Subject: Rename ga_init2() to ga_init() --- src/os/users.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'src/os/users.c') 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; -- cgit