1
0
mirror of https://github.com/samba-team/samba.git synced 2025-02-04 17:47:26 +03:00

r22211: Don't return a value from void functions !

Jeremy.
(This used to be commit 1dd8d3a723ac2262a45fcd717daef79bffbf30d5)
This commit is contained in:
Jeremy Allison 2007-04-13 22:56:27 +00:00 committed by Gerald (Jerry) Carter
parent 91be3a9ed6
commit 731df24607

View 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) static void centry_put_time(struct cache_entry *centry, time_t t)
{ {
NTTIME nt = (NTTIME)t; NTTIME nt = (NTTIME)t;
return centry_put_nttime(centry, nt); centry_put_nttime(centry, nt);
} }
/* /*