From 28201556a279ddfda8ba08f0df1032a9a94f0e7a Mon Sep 17 00:00:00 2001 From: Li Wei Date: Tue, 19 Feb 2013 10:07:03 +0800 Subject: [PATCH] LU-2783 include: Fix a conditional indentation Just an indentation fix to make the conditional expression in fid_is_sane() easier to read. Signed-off-by: Li Wei Change-Id: I1112d7d43c29f032c79277c6434d4c02e96e49bd Reviewed-on: http://review.whamcloud.com/5466 Tested-by: Hudson Reviewed-by: Andreas Dilger Reviewed-by: Emoly Liu Tested-by: Maloo --- lustre/include/lustre/lustre_idl.h | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/lustre/include/lustre/lustre_idl.h b/lustre/include/lustre/lustre_idl.h index 602af33..4973245 100644 --- a/lustre/include/lustre/lustre_idl.h +++ b/lustre/include/lustre/lustre_idl.h @@ -828,8 +828,8 @@ static inline int fid_is_sane(const struct lu_fid *fid) { return fid != NULL && ((fid_seq(fid) >= FID_SEQ_START && fid_ver(fid) == 0) || - fid_is_igif(fid) || fid_is_idif(fid) || - fid_seq_is_rsvd(fid_seq(fid))); + fid_is_igif(fid) || fid_is_idif(fid) || + fid_seq_is_rsvd(fid_seq(fid))); } static inline int fid_is_zero(const struct lu_fid *fid) -- 1.8.3.1