]> git.karo-electronics.de Git - mv-sheeva.git/commitdiff
Alpha: Fix a missing comma in sys_osf_statfs()
authorDavid Howells <dhowells@redhat.com>
Thu, 26 Aug 2010 16:44:35 +0000 (17:44 +0100)
committerLinus Torvalds <torvalds@linux-foundation.org>
Sat, 28 Aug 2010 21:01:03 +0000 (14:01 -0700)
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 <dhowells@redhat.com>
Signed-off-by: Linus Torvalds <torvalds@linux-foundation.org>
arch/alpha/kernel/osf_sys.c

index fb58150a7e8f4fb667f10ac7ae0a772b021f9b53..5d1e6d6ce6843b136fb7810e74c86df16d86daf4 100644 (file)
@@ -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;