diff options
author | Linus Torvalds <torvalds@linux-foundation.org> | 2010-04-12 18:34:25 -0700 |
---|---|---|
committer | Linus Torvalds <torvalds@linux-foundation.org> | 2010-04-12 18:34:25 -0700 |
commit | 44fa2b4bee5b07d506a7b002b4e2eb73654db7e0 (patch) | |
tree | 5415a4988e326de7d3456d72115ac74f548ca8d1 /fs/nilfs2/ioctl.c | |
parent | 0eddb519b9127c73d53db4bf3ec1d45b13f844d1 (diff) | |
parent | be3bd2223b89d270853302ab0a5909fa875fd831 (diff) | |
download | linux-3.10-44fa2b4bee5b07d506a7b002b4e2eb73654db7e0.tar.gz linux-3.10-44fa2b4bee5b07d506a7b002b4e2eb73654db7e0.tar.bz2 linux-3.10-44fa2b4bee5b07d506a7b002b4e2eb73654db7e0.zip |
Merge branch 'for-linus' of git://git.kernel.org/pub/scm/linux/kernel/git/ryusuke/nilfs2
* 'for-linus' of git://git.kernel.org/pub/scm/linux/kernel/git/ryusuke/nilfs2:
nilfs2: fix typo "numer" -> "number" in alloc.c
nilfs2: Remove an uninitialization warning in nilfs_btree_propagate_v()
nilfs2: fix a wrong type conversion in nilfs_ioctl()
Diffstat (limited to 'fs/nilfs2/ioctl.c')
-rw-r--r-- | fs/nilfs2/ioctl.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/fs/nilfs2/ioctl.c b/fs/nilfs2/ioctl.c index c2ff1b30601..f90a33d9a5b 100644 --- a/fs/nilfs2/ioctl.c +++ b/fs/nilfs2/ioctl.c @@ -649,7 +649,7 @@ static int nilfs_ioctl_get_info(struct inode *inode, struct file *filp, long nilfs_ioctl(struct file *filp, unsigned int cmd, unsigned long arg) { struct inode *inode = filp->f_dentry->d_inode; - void __user *argp = (void * __user *)arg; + void __user *argp = (void __user *)arg; switch (cmd) { case NILFS_IOCTL_CHANGE_CPMODE: |