diff options
author | Randy Dunlap <rdunlap@xenotime.net> | 2012-06-12 03:46:55 +0400 |
---|---|---|
committer | Linus Torvalds <torvalds@linux-foundation.org> | 2012-06-12 07:33:22 +0400 |
commit | b84297197ce60bb5da14cbd5516cf5130b0cd380 (patch) | |
tree | c034db5f2306974e614881c156be6f26a2dcd9d5 /fs/exofs | |
parent | 4e3c8a1b1c63482403e9d5e3148dee1a711e4b91 (diff) | |
download | linux-b84297197ce60bb5da14cbd5516cf5130b0cd380.tar.xz |
exofs: fix sparse non-ANSI function warning
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 <rdunlap@xenotime.net>
Signed-off-by: Linus Torvalds <torvalds@linux-foundation.org>
Diffstat (limited to 'fs/exofs')
-rw-r--r-- | fs/exofs/sys.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/fs/exofs/sys.c b/fs/exofs/sys.c index e32bc919e4e3..5a7b691e748b 100644 --- a/fs/exofs/sys.c +++ b/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; |