projects
/
linux.git
/ commitdiff
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
shortlog
|
log
|
commit
| commitdiff |
tree
raw
|
patch
| inline |
side by side
(parent:
e90deff
)
[GFS2] Add missing {} in trans.c
author
Steven Whitehouse
<swhiteho@redhat.com>
Thu, 30 Mar 2006 16:10:12 +0000
(11:10 -0500)
committer
Steven Whitehouse
<swhiteho@redhat.com>
Thu, 30 Mar 2006 16:10:12 +0000
(11:10 -0500)
A conditional had missing {} around the two following
statements. Now added.
Signed-off-by: Steven Whitehouse <swhiteho@redhat.com>
fs/gfs2/trans.c
patch
|
blob
|
history
diff --git
a/fs/gfs2/trans.c
b/fs/gfs2/trans.c
index
3fae3d4
..
d72f79e
100644
(file)
--- a/
fs/gfs2/trans.c
+++ b/
fs/gfs2/trans.c
@@
-106,10
+106,11
@@
void gfs2_trans_end(struct gfs2_sbd *sdp)
tr->tr_num_buf, tr->tr_blocks);
print_symbol(KERN_WARNING "GFS2: Transaction created at: %s\n", tr->tr_ip);
}
- if (gfs2_assert_withdraw(sdp, tr->tr_num_revoke <= tr->tr_revokes))
+ if (gfs2_assert_withdraw(sdp, tr->tr_num_revoke <= tr->tr_revokes))
{
fs_err(sdp, "tr_num_revoke = %u, tr_revokes = %u ",
tr->tr_num_revoke, tr->tr_revokes);
print_symbol(KERN_WARNING "GFS2: Transaction created at: %s\n", tr->tr_ip);
+ }
gfs2_log_commit(sdp, tr);