diff options
author | Roel Kluin <12o3l@tiscali.nl> | 2007-10-27 00:20:36 +0200 |
---|---|---|
committer | Mark Fasheh <mark.fasheh@oracle.com> | 2007-11-06 15:31:39 -0800 |
commit | 3cf0c507dd28de0e1a4c24304d806e6b3976f0f5 (patch) | |
tree | 20811e3b244661e18e3f11aa414c763d26f20973 /fs/ocfs2/alloc.c | |
parent | 0af4bd38876416d945ad6a1338798696604952a1 (diff) | |
download | kernel-crypto-3cf0c507dd28de0e1a4c24304d806e6b3976f0f5.tar.gz kernel-crypto-3cf0c507dd28de0e1a4c24304d806e6b3976f0f5.tar.xz kernel-crypto-3cf0c507dd28de0e1a4c24304d806e6b3976f0f5.zip |
[PATCH] Fix priority mistakes in fs/ocfs2/{alloc.c, dlmglue.c}
Fixes priority mistakes similar to '!x & y'
Signed-off-by: Roel Kluin <12o3l@tiscali.nl>
Signed-off-by: Mark Fasheh <mark.fasheh@oracle.com>
Diffstat (limited to 'fs/ocfs2/alloc.c')
-rw-r--r-- | fs/ocfs2/alloc.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/fs/ocfs2/alloc.c b/fs/ocfs2/alloc.c index 4ba7f0bdc24..ce62c152823 100644 --- a/fs/ocfs2/alloc.c +++ b/fs/ocfs2/alloc.c @@ -3946,7 +3946,7 @@ static int __ocfs2_mark_extent_written(struct inode *inode, struct ocfs2_merge_ctxt ctxt; struct ocfs2_extent_list *rightmost_el; - if (!rec->e_flags & OCFS2_EXT_UNWRITTEN) { + if (!(rec->e_flags & OCFS2_EXT_UNWRITTEN)) { ret = -EIO; mlog_errno(ret); goto out; |