Remove superfluous casts to 'void*'
Every non-const pointer converts automatically to it. Signed-off-by: Alejandro Colomar <alx@kernel.org>
This commit is contained in:
committed by
Serge Hallyn
parent
62172f6fb5
commit
1f6f1669cf
@@ -50,7 +50,7 @@ static const char *group_getname (const void *ent)
|
||||
|
||||
static void *group_parse (const char *line)
|
||||
{
|
||||
return (void *) sgetgrent (line);
|
||||
return sgetgrent (line);
|
||||
}
|
||||
|
||||
static int group_put (const void *ent, FILE * file)
|
||||
|
Reference in New Issue
Block a user