Return-Path: Received: (majordomo@vger.kernel.org) by vger.kernel.org via listexpand id S1753035Ab0HPISi (ORCPT ); Mon, 16 Aug 2010 04:18:38 -0400 Received: from mx6.orcon.net.nz ([219.88.242.56]:46789 "EHLO mx6.orcon.net.nz" rhost-flags-OK-OK-OK-OK) by vger.kernel.org with ESMTP id S1752607Ab0HPISh (ORCPT ); Mon, 16 Aug 2010 04:18:37 -0400 From: Michael Cree 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 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> X-Mailer: git-send-email 1.7.1 X-DSPAM-Check: by mx6.orcon.net.nz on Mon, 16 Aug 2010 20:18:34 +1200 X-DSPAM-Result: Innocent X-DSPAM-Processed: Mon Aug 16 20:18:34 2010 X-DSPAM-Confidence: 0.9928 X-DSPAM-Probability: 0.0000 Sender: linux-kernel-owner@vger.kernel.org List-ID: X-Mailing-List: linux-kernel@vger.kernel.org Content-Length: 984 Lines: 29 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 -- To unsubscribe from this list: send the line "unsubscribe linux-kernel" in the body of a message to majordomo@vger.kernel.org More majordomo info at http://vger.kernel.org/majordomo-info.html Please read the FAQ at http://www.tux.org/lkml/