aboutsummaryrefslogtreecommitdiffstats
path: root/kernel/inode.c
diff options
context:
space:
mode:
authorMiklos Szeredi <miklos@szeredi.hu>2004-11-30 18:25:20 +0000
committerMiklos Szeredi <miklos@szeredi.hu>2004-11-30 18:25:20 +0000
commit83a074415d72e5dae0a7836fbe1f8b6b8cd3a098 (patch)
tree51622ccb22394d6a13985fa2be496b27503bb632 /kernel/inode.c
parent96dfad7555e4cc410caf60408f517154119169da (diff)
downloadlibfuse-83a074415d72e5dae0a7836fbe1f8b6b8cd3a098.tar.gz
cleanup
Diffstat (limited to 'kernel/inode.c')
-rw-r--r--kernel/inode.c10
1 files changed, 5 insertions, 5 deletions
diff --git a/kernel/inode.c b/kernel/inode.c
index 8cae834..0a70d02 100644
--- a/kernel/inode.c
+++ b/kernel/inode.c
@@ -46,10 +46,10 @@ MODULE_PARM_DESC(user_allow_other, "Allow non root user to specify the \"allow_o
#endif
struct fuse_mount_data {
int fd;
- unsigned int rootmode;
- unsigned int uid;
- unsigned int flags;
- unsigned int max_read;
+ unsigned rootmode;
+ unsigned uid;
+ unsigned flags;
+ unsigned max_read;
};
static struct inode *fuse_alloc_inode(struct super_block *sb)
@@ -392,7 +392,7 @@ static struct fuse_conn *get_conn(struct file *file, struct super_block *sb)
return fc;
}
-static struct inode *get_root_inode(struct super_block *sb, unsigned int mode)
+static struct inode *get_root_inode(struct super_block *sb, unsigned mode)
{
struct fuse_attr attr;
memset(&attr, 0, sizeof(attr));