diff options
author | Jeremy Allison <jra@samba.org> | 2009-09-17 10:03:14 -0700 |
---|---|---|
committer | Jeremy Allison <jra@samba.org> | 2009-09-17 10:03:14 -0700 |
commit | 9e5488d399711ce744e764d40c64af777c3d3292 (patch) | |
tree | 7596b25acf2c29933de8c04ee2f655aff2c2daab /source3/winbindd | |
parent | 2032f2653e310708c9b7d3d75bfc11011c2bf9b2 (diff) | |
download | samba-9e5488d399711ce744e764d40c64af777c3d3292.tar.gz samba-9e5488d399711ce744e764d40c64af777c3d3292.tar.bz2 samba-9e5488d399711ce744e764d40c64af777c3d3292.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_remove_mapping.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/source3/winbindd/winbindd_remove_mapping.c b/source3/winbindd/winbindd_remove_mapping.c index e94f6c28a1..055694d63c 100644 --- a/source3/winbindd/winbindd_remove_mapping.c +++ b/source3/winbindd/winbindd_remove_mapping.c @@ -96,7 +96,7 @@ static void winbindd_remove_mapping_done(struct tevent_req *subreq) tevent_req_nterror(req, result); return; } - return tevent_req_done(req); + tevent_req_done(req); } NTSTATUS winbindd_remove_mapping_recv(struct tevent_req *req, |