From f21e9f578069490f047ff919d26268cc5a39cfc5 Mon Sep 17 00:00:00 2001 From: Stefan Metzmacher Date: Wed, 20 Sep 2006 00:56:51 +0000 Subject: r18705: not all compilers like this metze (This used to be commit 2ec4bc0f5299f295525f306279ddb136e0b19ee1) --- source3/lib/util.c | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) (limited to 'source3/lib/util.c') diff --git a/source3/lib/util.c b/source3/lib/util.c index 2391566e6c..d4042044fb 100644 --- a/source3/lib/util.c +++ b/source3/lib/util.c @@ -3031,10 +3031,10 @@ static void smb_nscd_flush_cache(const char *service) void smb_nscd_flush_user_cache(void) { - return smb_nscd_flush_cache("passwd"); + smb_nscd_flush_cache("passwd"); } void smb_nscd_flush_group_cache(void) { - return smb_nscd_flush_cache("group"); + smb_nscd_flush_cache("group"); } -- cgit