Donate to e Foundation | Murena handsets with /e/OS | Own a part of Murena! Learn more

Commit 62b88dc1 authored by David Howells's avatar David Howells Committed by Linus Torvalds
Browse files

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: default avatarDavid Howells <dhowells@redhat.com>
Signed-off-by: default avatarLinus Torvalds <torvalds@linux-foundation.org>
parent bad849b3
Loading
Loading
Loading
Loading
+1 −1
Original line number Diff line number Diff line
@@ -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;