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

Commit 12e776a0 authored by Artem Bityutskiy's avatar Artem Bityutskiy Committed by Artem Bityutskiy
Browse files

UBIFS: remove unnecessary brackets



Remove unnecessary brackets in "inode->i_flags |= (S_NOCMTIME)" statement to
make the code not look silly.

Signed-off-by: default avatarArtem Bityutskiy <Artem.Bityutskiy@nokia.com>
parent a29fa9df
Loading
Loading
Loading
Loading
+1 −1
Original line number Original line Diff line number Diff line
@@ -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
	 * UBIFS has to fully control "clean <-> dirty" transitions of inodes
	 * to make budgeting work.
	 * to make budgeting work.
	 */
	 */
	inode->i_flags |= (S_NOCMTIME);
	inode->i_flags |= S_NOCMTIME;


	inode_init_owner(inode, dir, mode);
	inode_init_owner(inode, dir, mode);
	inode->i_mtime = inode->i_atime = inode->i_ctime =
	inode->i_mtime = inode->i_atime = inode->i_ctime =