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

Commit 4828d1fd authored by Zoltán Lajos Kis's avatar Zoltán Lajos Kis Committed by Greg Kroah-Hartman
Browse files

Staging: lustre: fix braces are not necessary in dt_object.c



Fixes a braces {} are not necessary for any arm of this statement
warning in lustre/lustre/obdclass/dt_object.c that was found by
the checkpatch.pl tool.

Signed-off-by: default avatarZoltán Lajos Kis <zoltan.lajos.kis@gmail.com>
Signed-off-by: default avatarGreg Kroah-Hartman <gregkh@linuxfoundation.org>
parent 84ea37b6
Loading
Loading
Loading
Loading
+2 −2
Original line number Diff line number Diff line
@@ -329,9 +329,9 @@ static struct dt_object *dt_reg_open(const struct lu_env *env,
	int result;

	result = dt_lookup_dir(env, p, name, fid);
	if (result == 0){
	if (result == 0)
		o = dt_locate(env, dt, fid);
	} else
	else
		o = ERR_PTR(result);

	return o;