Donate to e Foundation | Murena handsets with /e/OS | Own a part of Murena! Learn more

Commit a2daff68 authored by Randy Dunlap's avatar Randy Dunlap Committed by Miklos Szeredi
Browse files

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: default avatarRandy Dunlap <randy.dunlap@oracle.com>
Signed-off-by: default avatarMiklos Szeredi <mszeredi@suse.cz>
parent 55922c9d
Loading
Loading
Loading
Loading
+1 −1
Original line number Diff line number Diff line
@@ -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);
}