summaryrefslogtreecommitdiffstats
path: root/source/lib/replace.c
diff options
context:
space:
mode:
authorJeremy Allison <jra@samba.org>2001-12-27 06:34:48 +0000
committerJeremy Allison <jra@samba.org>2001-12-27 06:34:48 +0000
commitd222a01e0f046883a602cc4591a400b8e65ef6b5 (patch)
treefc194966bc8770ad07d52ea8343bb73638f0f387 /source/lib/replace.c
parent26e4c4099c61c7ba9f2153e56061bea9882553d9 (diff)
downloadsamba-d222a01e0f046883a602cc4591a400b8e65ef6b5.tar.gz
samba-d222a01e0f046883a602cc4591a400b8e65ef6b5.tar.xz
samba-d222a01e0f046883a602cc4591a400b8e65ef6b5.zip
Removed spurious (char *) casts in SAFE_FREE calls.
Jeremy.
Diffstat (limited to 'source/lib/replace.c')
-rw-r--r--source/lib/replace.c2
1 files changed, 1 insertions, 1 deletions
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 */
}