missing brace in afs_get_sb

Fix a syntax error when GET_SB_HAS_STRUCT_VFSMOUNT is
not true so we can build on older versions of linux.

Change-Id: I85aac803f68c3f3729abd32dfcecbc20ccac8ab9
Reviewed-on: http://gerrit.openafs.org/1049
Reviewed-by: Simon Wilkinson <sxw@inf.ed.ac.uk>
Reviewed-by: Russ Allbery <rra@stanford.edu>
Tested-by: Russ Allbery <rra@stanford.edu>
This commit is contained in:
Michael Meffie 2009-12-30 13:02:31 -05:00 committed by Russ Allbery
parent 187630ed3e
commit dab6cbadd6

View File

@ -67,7 +67,7 @@ afs_get_sb(struct file_system_type *fs_type, int flags,
#else #else
static struct superblock * static struct superblock *
afs_get_sb(struct file_system_type *fs_type, int flags, afs_get_sb(struct file_system_type *fs_type, int flags,
const char *dev_name, void *data) const char *dev_name, void *data) {
return get_sb_nodev(fs_type, flags, data, afs_fill_super); return get_sb_nodev(fs_type, flags, data, afs_fill_super);
} }
#endif #endif