r22211: Don't return a value from void functions !
authorJeremy Allison <jra@samba.org>
Fri, 13 Apr 2007 22:56:27 +0000 (22:56 +0000)
committerGerald (Jerry) Carter <jerry@samba.org>
Wed, 10 Oct 2007 17:19:20 +0000 (12:19 -0500)
Jeremy.
(This used to be commit 1dd8d3a723ac2262a45fcd717daef79bffbf30d5)

source3/nsswitch/winbindd_cache.c

index cc98e79ee9701994571280793a99dfad67ab0123..16fe5931e57765ab8b9a4c85c4c3f42f2a94e5b3 100644 (file)
@@ -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);
 }
 
 /*