From b705e9a9e71546f3da2d3f5f966363e62b74d057 Mon Sep 17 00:00:00 2001 From: Eric Blake Date: Fri, 24 Oct 2008 11:42:29 -0600 Subject: [PATCH] group-list: avoid compiler warning * src/group-list.c (print_group_list) [!HAVE_GETGROUPS]: Always return value. --- src/group-list.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/group-list.c b/src/group-list.c index 96438d9b82..3547ed669e 100644 --- a/src/group-list.c +++ b/src/group-list.c @@ -83,9 +83,9 @@ print_group_list (const char *username, ok = false; } free (groups); - return ok; } #endif /* HAVE_GETGROUPS */ + return ok; } -- 2.47.3