dect
/
linux-2.6
Archived
13
0
Fork 0

fuse: fix non-ANSI void function notation

Fix void function parameter list sparse warning:

fs/fuse/inode.c:74:44: warning: non-ANSI function declaration of function 'fuse_alloc_forget'

Signed-off-by: Randy Dunlap <randy.dunlap@oracle.com>
Signed-off-by: Miklos Szeredi <mszeredi@suse.cz>
This commit is contained in:
Randy Dunlap 2011-05-31 14:09:00 -07:00 committed by Miklos Szeredi
parent 55922c9d1b
commit a2daff6803
1 changed files with 1 additions and 1 deletions

View File

@ -71,7 +71,7 @@ struct fuse_mount_data {
unsigned blksize;
};
struct fuse_forget_link *fuse_alloc_forget()
struct fuse_forget_link *fuse_alloc_forget(void)
{
return kzalloc(sizeof(struct fuse_forget_link), GFP_KERNEL);
}