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

Commit 497aaa5c authored by Jon Bernard's avatar Jon Bernard Committed by Greg Kroah-Hartman
Browse files

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: default avatarJon Bernard <jbernard@tuxion.com>
Signed-off-by: default avatarGreg Kroah-Hartman <gregkh@linuxfoundation.org>
parent 3e67cdf5
Loading
Loading
Loading
Loading
+1 −2
Original line number Diff line number Diff line
@@ -50,10 +50,9 @@ 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;
}