From: David Howells Date: Thu, 26 Aug 2010 16:44:35 +0000 (+0100) Subject: Alpha: Fix a missing comma in sys_osf_statfs() X-Git-Tag: MMI-PSA29.97-13-9~22429 X-Git-Url: https://git.stricted.de/?a=commitdiff_plain;h=62b88dc1912c7d105f768e0e64756f8bd83936db;p=GitHub%2FMotorolaMobilityLLC%2Fkernel-slsi.git Alpha: Fix a missing comma in sys_osf_statfs() Fix a comma that got accidentally deleted from sys_osf_statfs() leading to the following warning: arch/alpha/kernel/osf_sys.c: In function 'SYSC_osf_statfs': arch/alpha/kernel/osf_sys.c:255: error: syntax error before 'buffer' Signed-off-by: David Howells Signed-off-by: Linus Torvalds --- diff --git a/arch/alpha/kernel/osf_sys.c b/arch/alpha/kernel/osf_sys.c index fb58150a7e8f..5d1e6d6ce684 100644 --- a/arch/alpha/kernel/osf_sys.c +++ b/arch/alpha/kernel/osf_sys.c @@ -252,7 +252,7 @@ SYSCALL_DEFINE3(osf_statfs, const char __user *, pathname, retval = user_path(pathname, &path); if (!retval) { - retval = do_osf_statfs(&path buffer, bufsiz); + retval = do_osf_statfs(&path, buffer, bufsiz); path_put(&path); } return retval;