diff options
author | Jeremy Allison <jra@samba.org> | 2009-09-17 10:00:31 -0700 |
---|---|---|
committer | Jeremy Allison <jra@samba.org> | 2009-09-17 10:00:31 -0700 |
commit | 2032f2653e310708c9b7d3d75bfc11011c2bf9b2 (patch) | |
tree | eb0ceeab636a5869e6f1a8d30274a0b0ccce090f /source3 | |
parent | 16836f9e9ed451b2a6690ad22a40cd1fb2cb3b46 (diff) | |
download | samba-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')
-rw-r--r-- | source3/winbindd/winbindd_set_mapping.c | 2 |
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, |