From 8a62ee49746a32d1c0b8c3f3261b3a38c667d00b Mon Sep 17 00:00:00 2001 From: Tim Potter Date: Fri, 23 Jun 2000 07:02:59 +0000 Subject: Don't return a value for a void function. (This used to be commit 66fd7da08ffbb3673925e8816f06f8983363036b) --- testsuite/smbd/sec_ctx_utils.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/testsuite/smbd/sec_ctx_utils.c b/testsuite/smbd/sec_ctx_utils.c index 4d0588196d..fbda6352c4 100644 --- a/testsuite/smbd/sec_ctx_utils.c +++ b/testsuite/smbd/sec_ctx_utils.c @@ -36,7 +36,7 @@ void get_random_grouplist(int *ngroups, gid_t **groups) if (!groups) { printf("FAIL: malloc random grouplist\n"); - return 1; + return; } for (i = 0; i < *ngroups; i++) { -- cgit