diff options
author | Tim Potter <tpot@samba.org> | 2000-06-23 07:02:59 +0000 |
---|---|---|
committer | Tim Potter <tpot@samba.org> | 2000-06-23 07:02:59 +0000 |
commit | 8a62ee49746a32d1c0b8c3f3261b3a38c667d00b (patch) | |
tree | 7ecca2677a3efa7c9d95ee35b5c73aef2aa93b66 | |
parent | a90b7ab61b1e1e93d515f74723f00382ced7ddf0 (diff) | |
download | samba-8a62ee49746a32d1c0b8c3f3261b3a38c667d00b.tar.gz |
Don't return a value for a void function.
(This used to be commit 66fd7da08ffbb3673925e8816f06f8983363036b)
-rw-r--r-- | testsuite/smbd/sec_ctx_utils.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/testsuite/smbd/sec_ctx_utils.c b/testsuite/smbd/sec_ctx_utils.c index 4d0588196dd..fbda6352c46 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++) { |