Linux kernel mirror (for testing) git.kernel.org/pub/scm/linux/kernel/git/torvalds/linux.git
kernel os linux
1
fork

Configure Feed

Select the types of activity you want to include in your feed.

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 <dhowells@redhat.com>
Signed-off-by: Linus Torvalds <torvalds@linux-foundation.org>

authored by

David Howells and committed by
Linus Torvalds
62b88dc1 bad849b3

+1 -1
+1 -1
arch/alpha/kernel/osf_sys.c
··· 252 252 253 253 retval = user_path(pathname, &path); 254 254 if (!retval) { 255 - retval = do_osf_statfs(&path buffer, bufsiz); 255 + retval = do_osf_statfs(&path, buffer, bufsiz); 256 256 path_put(&path); 257 257 } 258 258 return retval;