[PATCH 2/2] net: tun.c fix cast

From: Harvey Harrison
Date: Wed Jul 16 2008 - 15:45:39 EST


Signed-off-by: Harvey Harrison <harvey.harrison@xxxxxxxxx>
---
Appeared between next-20080715->next-20080716

drivers/net/tun.c | 2 +-
1 files changed, 1 insertions(+), 1 deletions(-)

diff --git a/drivers/net/tun.c b/drivers/net/tun.c
index d1fa746..2b0ae61 100644
--- a/drivers/net/tun.c
+++ b/drivers/net/tun.c
@@ -908,7 +908,7 @@ static int tun_chr_ioctl(struct inode *inode, struct file *file,
if ((tun->flags & TUN_TYPE_MASK) != TUN_TAP_DEV)
return -EINVAL;
rtnl_lock();
- ret = update_filter(&tun->txflt, (void *) __user arg);
+ ret = update_filter(&tun->txflt, (void __user *)arg);
rtnl_unlock();
return ret;

--
1.5.6.3.499.geae9

--
To unsubscribe from this list: send the line "unsubscribe linux-net" in
the body of a message to majordomo@xxxxxxxxxxxxxxx
More majordomo info at http://vger.kernel.org/majordomo-info.html