summaryrefslogtreecommitdiff
path: root/drivers
diff options
context:
space:
mode:
authorZoltán Lajos Kis <zoltan.lajos.kis@gmail.com>2015-06-10 22:00:16 +0200
committerGreg Kroah-Hartman <gregkh@linuxfoundation.org>2015-06-10 17:55:37 -0700
commit4828d1fdf4858072f714a22eaf8b65b1011b6d67 (patch)
treed2f31ba81027d2efc6fe045f2f01253f25d057f3 /drivers
parent84ea37b6d24a2e6b53e3e4736341e008fcac4eb6 (diff)
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: Zoltán Lajos Kis <zoltan.lajos.kis@gmail.com> Signed-off-by: Greg Kroah-Hartman <gregkh@linuxfoundation.org>
Diffstat (limited to 'drivers')
-rw-r--r--drivers/staging/lustre/lustre/obdclass/dt_object.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/drivers/staging/lustre/lustre/obdclass/dt_object.c b/drivers/staging/lustre/lustre/obdclass/dt_object.c
index 4b5c828d6f05..46fbf216e7f8 100644
--- a/drivers/staging/lustre/lustre/obdclass/dt_object.c
+++ b/drivers/staging/lustre/lustre/obdclass/dt_object.c
@@ -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;