Commit 62b88dc1912c7d105f768e0e64756f8bd83936db

Authored by David Howells
Committed by Linus Torvalds
1 parent bad849b3dc

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>

Showing 1 changed file with 1 additions and 1 deletions Side-by-side Diff

arch/alpha/kernel/osf_sys.c
... ... @@ -252,7 +252,7 @@
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;