mirror of
https://github.com/torvalds/linux.git
synced 2026-02-04 15:28:49 +08:00
Staging: lustre: fix a brace coding style issue in fsfilt.c
This is a patch to the fsfilt.c file that fixes up a brace warning found by the checkpatch.pl tool. Signed-off-by: Jon Bernard <jbernard@tuxion.com> Signed-off-by: Greg Kroah-Hartman <gregkh@linuxfoundation.org>
This commit is contained in:
committed by
Greg Kroah-Hartman
parent
3e67cdf54b
commit
497aaa5cd8
@@ -50,9 +50,8 @@ static struct fsfilt_operations *fsfilt_search_type(const char *type)
|
||||
|
||||
list_for_each(p, &fsfilt_types) {
|
||||
found = list_entry(p, struct fsfilt_operations, fs_list);
|
||||
if (!strcmp(found->fs_type, type)) {
|
||||
if (!strcmp(found->fs_type, type))
|
||||
return found;
|
||||
}
|
||||
}
|
||||
return NULL;
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user