From d222a01e0f046883a602cc4591a400b8e65ef6b5 Mon Sep 17 00:00:00 2001 From: Jeremy Allison Date: Thu, 27 Dec 2001 06:34:48 +0000 Subject: Removed spurious (char *) casts in SAFE_FREE calls. Jeremy. --- source/lib/replace.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'source/lib/replace.c') diff --git a/source/lib/replace.c b/source/lib/replace.c index 5ef78d01827..16d7450d69e 100644 --- a/source/lib/replace.c +++ b/source/lib/replace.c @@ -192,7 +192,7 @@ Corrections by richard.kettlewell@kewill.com } endgrent(); ret = sys_setgroups(i,grouplst); - SAFE_FREE((char *)grouplst); + SAFE_FREE(grouplst); return ret; #endif /* HAVE_SETGROUPS */ } -- cgit