diff options
author | Jeremy Allison <jra@samba.org> | 2007-04-13 22:56:27 +0000 |
---|---|---|
committer | Gerald (Jerry) Carter <jerry@samba.org> | 2007-10-10 12:19:20 -0500 |
commit | 731df24607fea17e2a1f57932ba36dc90e39aa18 (patch) | |
tree | 02c6551eca7e7e447732442e68de41f0c35d5309 /source3/nsswitch | |
parent | 91be3a9ed6e5f915d80ed7d78867b8513735e912 (diff) | |
download | samba-731df24607fea17e2a1f57932ba36dc90e39aa18.tar.gz samba-731df24607fea17e2a1f57932ba36dc90e39aa18.tar.bz2 samba-731df24607fea17e2a1f57932ba36dc90e39aa18.zip |
r22211: Don't return a value from void functions !
Jeremy.
(This used to be commit 1dd8d3a723ac2262a45fcd717daef79bffbf30d5)
Diffstat (limited to 'source3/nsswitch')
-rw-r--r-- | source3/nsswitch/winbindd_cache.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/source3/nsswitch/winbindd_cache.c b/source3/nsswitch/winbindd_cache.c index cc98e79ee9..16fe5931e5 100644 --- a/source3/nsswitch/winbindd_cache.c +++ b/source3/nsswitch/winbindd_cache.c @@ -759,7 +759,7 @@ static void centry_put_nttime(struct cache_entry *centry, NTTIME nt) static void centry_put_time(struct cache_entry *centry, time_t t) { NTTIME nt = (NTTIME)t; - return centry_put_nttime(centry, nt); + centry_put_nttime(centry, nt); } /* |