From mboxrd@z Thu Jan 1 00:00:00 1970 From: Randy Dunlap Subject: [PATCH] exofs: fix sparse non-ANSI function warning Date: Mon, 11 Jun 2012 16:46:55 -0700 Message-ID: <4FD6836F.1020406@xenotime.net> Mime-Version: 1.0 Content-Type: text/plain; charset=ISO-8859-1 Content-Transfer-Encoding: 7bit Cc: Boaz Harrosh , Benny Halevy , Andrew Morton , linux-fsdevel@vger.kernel.org, Linus Torvalds To: LKML , osd-dev@open-osd.org Return-path: Sender: linux-kernel-owner@vger.kernel.org List-Id: linux-fsdevel.vger.kernel.org From: Randy Dunlap Fix sparse non-ANSI function warning: fs/exofs/sys.c:112:28: warning: non-ANSI function declaration of function 'exofs_sysfs_dbg_print' Signed-off-by: Randy Dunlap --- fs/exofs/sys.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) --- lnx-35-rc2.orig/fs/exofs/sys.c +++ lnx-35-rc2/fs/exofs/sys.c @@ -109,7 +109,7 @@ static struct kobj_type odev_ktype = { static struct kobj_type uuid_ktype = { }; -void exofs_sysfs_dbg_print() +void exofs_sysfs_dbg_print(void) { #ifdef CONFIG_EXOFS_DEBUG struct kobject *k_name, *k_tmp;