From 8a2ffb2b010e02dd8dcbb3182d5a6e27006f6e46 Mon Sep 17 00:00:00 2001 From: Hinidu Date: Mon, 7 Apr 2014 00:24:21 +0300 Subject: Use stdbool in os module --- 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 c8c2e773de..5972e3f1e8 100644 --- a/src/os/users.c +++ b/src/os/users.c @@ -14,7 +14,7 @@ int os_get_usernames(garray_T *users) { if (users == NULL) { - return FALSE; + return FAIL; } ga_init(users, sizeof(char *), 20); -- cgit