diff options
author | Artem Bityutskiy <Artem.Bityutskiy@nokia.com> | 2011-05-27 15:50:39 +0300 |
---|---|---|
committer | Artem Bityutskiy <dedekind1@gmail.com> | 2011-07-04 10:54:27 +0300 |
commit | 12e776a0882def45e7ee50918016968b392ac7bd (patch) | |
tree | bccc67f49b74a8f019940672ece19755133eb1b7 /fs/ubifs | |
parent | a29fa9dfa4d5d1b962825c79f19d9b6f3f15843b (diff) | |
download | op-kernel-dev-12e776a0882def45e7ee50918016968b392ac7bd.zip op-kernel-dev-12e776a0882def45e7ee50918016968b392ac7bd.tar.gz |
UBIFS: remove unnecessary brackets
Remove unnecessary brackets in "inode->i_flags |= (S_NOCMTIME)" statement to
make the code not look silly.
Signed-off-by: Artem Bityutskiy <Artem.Bityutskiy@nokia.com>
Diffstat (limited to 'fs/ubifs')
-rw-r--r-- | fs/ubifs/dir.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/fs/ubifs/dir.c b/fs/ubifs/dir.c index ef5abd3..c6cbdd0 100644 --- a/fs/ubifs/dir.c +++ b/fs/ubifs/dir.c @@ -102,7 +102,7 @@ struct inode *ubifs_new_inode(struct ubifs_info *c, const struct inode *dir, * UBIFS has to fully control "clean <-> dirty" transitions of inodes * to make budgeting work. */ - inode->i_flags |= (S_NOCMTIME); + inode->i_flags |= S_NOCMTIME; inode_init_owner(inode, dir, mode); inode->i_mtime = inode->i_atime = inode->i_ctime = |