From mboxrd@z Thu Jan 1 00:00:00 1970 From: Michael Cree Subject: [PATCH] alpha: Fix compile error due to typo in call of do_osf_statfs() Date: Mon, 16 Aug 2010 20:18:00 +1200 Message-ID: <1281946680-23497-1-git-send-email-mcree@orcon.net.nz> Return-path: Sender: linux-alpha-owner@vger.kernel.org List-ID: MIME-Version: 1.0 Content-Type: text/plain; charset="us-ascii" Content-Transfer-Encoding: 7bit To: linux-kernel@vger.kernel.org Cc: Michael Cree , Richard Henderson , Ivan Kokshaysky , Matt Turner , Andrew Morton , Christoph Hellwig , Al Viro , linux-alpha@vger.kernel.org Typo, i.e., missing comma in argument list of call of do_osf_statfs(), was introduced by commit ebabe9a9001af0af56c0c2780ca1576246e7a74b. Signed-off-by: Michael Cree --- arch/alpha/kernel/osf_sys.c | 2 +- 1 files changed, 1 insertions(+), 1 deletions(-) diff --git a/arch/alpha/kernel/osf_sys.c b/arch/alpha/kernel/osf_sys.c index fb58150..5d1e6d6 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; -- 1.7.1