Commit f7f31adf authored by Colin Ian King's avatar Colin Ian King Committed by Dave Kleikamp

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: default avatarColin Ian King <colin.king@canonical.com>
Signed-off-by: default avatarDave Kleikamp <dave.kleikamp@oracle.com>
parent 55a8d02b
...@@ -133,11 +133,11 @@ int jfs_write_inode(struct inode *inode, struct writeback_control *wbc) ...@@ -133,11 +133,11 @@ int jfs_write_inode(struct inode *inode, struct writeback_control *wbc)
* It has been committed since the last change, but was still * It has been committed since the last change, but was still
* on the dirty inode list. * on the dirty inode list.
*/ */
if (!test_cflag(COMMIT_Dirty, inode)) { if (!test_cflag(COMMIT_Dirty, inode)) {
/* Make sure committed changes hit the disk */ /* Make sure committed changes hit the disk */
jfs_flush_journal(JFS_SBI(inode->i_sb)->log, wait); jfs_flush_journal(JFS_SBI(inode->i_sb)->log, wait);
return 0; return 0;
} }
if (jfs_commit_inode(inode, wait)) { if (jfs_commit_inode(inode, wait)) {
jfs_err("jfs_write_inode: jfs_commit_inode failed!"); jfs_err("jfs_write_inode: jfs_commit_inode failed!");
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment