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:
parent
91be3a9ed6
commit
731df24607
@ -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);
|
||||
}
|
||||
|
||||
/*
|
||||
|
Loading…
x
Reference in New Issue
Block a user