diff options
author | Steven Whitehouse <swhiteho@redhat.com> | 2006-03-30 11:10:12 -0500 |
---|---|---|
committer | Steven Whitehouse <swhiteho@redhat.com> | 2006-03-30 11:10:12 -0500 |
commit | cd45697f0ddbb58f3f83c29fe164713ee7765e21 (patch) | |
tree | bbd668faca1430e77e7900df825acd461af28be5 /fs/gfs2/trans.c | |
parent | e90deff5336ac500c65f873484c326cfa8a9d379 (diff) |
[GFS2] Add missing {} in trans.c
A conditional had missing {} around the two following
statements. Now added.
Signed-off-by: Steven Whitehouse <swhiteho@redhat.com>
Diffstat (limited to 'fs/gfs2/trans.c')
-rw-r--r-- | fs/gfs2/trans.c | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/fs/gfs2/trans.c b/fs/gfs2/trans.c index 3fae3d4e9ae4..d72f79e67c94 100644 --- a/fs/gfs2/trans.c +++ b/fs/gfs2/trans.c | |||
@@ -106,10 +106,11 @@ void gfs2_trans_end(struct gfs2_sbd *sdp) | |||
106 | tr->tr_num_buf, tr->tr_blocks); | 106 | tr->tr_num_buf, tr->tr_blocks); |
107 | print_symbol(KERN_WARNING "GFS2: Transaction created at: %s\n", tr->tr_ip); | 107 | print_symbol(KERN_WARNING "GFS2: Transaction created at: %s\n", tr->tr_ip); |
108 | } | 108 | } |
109 | if (gfs2_assert_withdraw(sdp, tr->tr_num_revoke <= tr->tr_revokes)) | 109 | if (gfs2_assert_withdraw(sdp, tr->tr_num_revoke <= tr->tr_revokes)) { |
110 | fs_err(sdp, "tr_num_revoke = %u, tr_revokes = %u ", | 110 | fs_err(sdp, "tr_num_revoke = %u, tr_revokes = %u ", |
111 | tr->tr_num_revoke, tr->tr_revokes); | 111 | tr->tr_num_revoke, tr->tr_revokes); |
112 | print_symbol(KERN_WARNING "GFS2: Transaction created at: %s\n", tr->tr_ip); | 112 | print_symbol(KERN_WARNING "GFS2: Transaction created at: %s\n", tr->tr_ip); |
113 | } | ||
113 | 114 | ||
114 | gfs2_log_commit(sdp, tr); | 115 | gfs2_log_commit(sdp, tr); |
115 | 116 | ||