summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorTim Potter <tpot@samba.org>2000-06-23 07:02:59 +0000
committerTim Potter <tpot@samba.org>2000-06-23 07:02:59 +0000
commit66fd7da08ffbb3673925e8816f06f8983363036b (patch)
treeb4202420e21e4b1c0c2516711673312dead5dccf
parent0af2a1ea69fcdf21243fc7e9a9de8914817d4880 (diff)
downloadsamba-66fd7da08ffbb3673925e8816f06f8983363036b.tar.gz
samba-66fd7da08ffbb3673925e8816f06f8983363036b.tar.xz
samba-66fd7da08ffbb3673925e8816f06f8983363036b.zip
Don't return a value for a void function.
-rw-r--r--testsuite/smbd/sec_ctx_utils.c2
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++) {