aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorColin Ian King <colin.king@canonical.com>2015-06-04 12:57:03 -0400
committerDave Kleikamp <dave.kleikamp@oracle.com>2015-06-04 14:27:36 -0400
commitf7f31adf07d1c9e66c160e9bdd77e12531cd6996 (patch)
tree91d54d0ae5a4928da00d561682b8a17f7e696a35
parent55a8d02bbb25edf9589b2f11afec410d053da497 (diff)
jfs: fix indentation on if statement
The if statement and closing brace are indented by 1 extra space, so remove this extra spacing. Cosmetic change only. Signed-off-by: Colin Ian King <colin.king@canonical.com> Signed-off-by: Dave Kleikamp <dave.kleikamp@oracle.com>
-rw-r--r--fs/jfs/inode.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/fs/jfs/inode.c b/fs/jfs/inode.c
index 070dc4b33544..28d69fade18a 100644
--- a/fs/jfs/inode.c
+++ b/fs/jfs/inode.c
@@ -133,11 +133,11 @@ int jfs_write_inode(struct inode *inode, struct writeback_control *wbc)
133 * It has been committed since the last change, but was still 133 * It has been committed since the last change, but was still
134 * on the dirty inode list. 134 * on the dirty inode list.
135 */ 135 */
136 if (!test_cflag(COMMIT_Dirty, inode)) { 136 if (!test_cflag(COMMIT_Dirty, inode)) {
137 /* Make sure committed changes hit the disk */ 137 /* Make sure committed changes hit the disk */
138 jfs_flush_journal(JFS_SBI(inode->i_sb)->log, wait); 138 jfs_flush_journal(JFS_SBI(inode->i_sb)->log, wait);
139 return 0; 139 return 0;
140 } 140 }
141 141
142 if (jfs_commit_inode(inode, wait)) { 142 if (jfs_commit_inode(inode, wait)) {
143 jfs_err("jfs_write_inode: jfs_commit_inode failed!"); 143 jfs_err("jfs_write_inode: jfs_commit_inode failed!");