From 731df24607fea17e2a1f57932ba36dc90e39aa18 Mon Sep 17 00:00:00 2001 From: Jeremy Allison Date: Fri, 13 Apr 2007 22:56:27 +0000 Subject: r22211: Don't return a value from void functions ! Jeremy. (This used to be commit 1dd8d3a723ac2262a45fcd717daef79bffbf30d5) --- source3/nsswitch/winbindd_cache.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'source3/nsswitch') 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); } /* -- cgit