summaryrefslogtreecommitdiff
path: root/source3/winbindd
diff options
context:
space:
mode:
authorJeremy Allison <jra@samba.org>2009-09-17 10:00:31 -0700
committerJeremy Allison <jra@samba.org>2009-09-17 10:00:31 -0700
commit2032f2653e310708c9b7d3d75bfc11011c2bf9b2 (patch)
treeeb0ceeab636a5869e6f1a8d30274a0b0ccce090f /source3/winbindd
parent16836f9e9ed451b2a6690ad22a40cd1fb2cb3b46 (diff)
downloadsamba-2032f2653e310708c9b7d3d75bfc11011c2bf9b2.tar.gz
samba-2032f2653e310708c9b7d3d75bfc11011c2bf9b2.tar.bz2
samba-2032f2653e310708c9b7d3d75bfc11011c2bf9b2.zip
void functions can't return a value. Found by the Solaris compiler.
Jeremy.
Diffstat (limited to 'source3/winbindd')
-rw-r--r--source3/winbindd/winbindd_set_mapping.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/source3/winbindd/winbindd_set_mapping.c b/source3/winbindd/winbindd_set_mapping.c
index 970ba7a4e1..8274c1eb10 100644
--- a/source3/winbindd/winbindd_set_mapping.c
+++ b/source3/winbindd/winbindd_set_mapping.c
@@ -96,7 +96,7 @@ static void winbindd_set_mapping_done(struct tevent_req *subreq)
tevent_req_nterror(req, result);
return;
}
- return tevent_req_done(req);
+ tevent_req_done(req);
}
NTSTATUS winbindd_set_mapping_recv(struct tevent_req *req,