[NET]: Remove more unneeded typecasts on *malloc()
This removes more unneeded casts on the return value for kmalloc(), sock_kmalloc(), and vmalloc(). Signed-off-by: Kris Katterjohn <kjak@users.sourceforge.net> Acked-by: James Morris <jmorris@namei.org> Signed-off-by: David S. Miller <davem@davemloft.net>
This commit is contained in:

committed by
David S. Miller

parent
ae0f7d5f83
commit
8b3a70058b
@@ -549,7 +549,7 @@ done:
|
||||
retv = -ENOBUFS;
|
||||
break;
|
||||
}
|
||||
gsf = (struct group_filter *)kmalloc(optlen,GFP_KERNEL);
|
||||
gsf = kmalloc(optlen,GFP_KERNEL);
|
||||
if (gsf == 0) {
|
||||
retv = -ENOBUFS;
|
||||
break;
|
||||
|
Reference in New Issue
Block a user