Skip to content

Commit

Permalink
jfs: removed a prohibited space after opening parenthesis
Browse files Browse the repository at this point in the history
Fixed a coding style issue.

Signed-off-by: Nan Jia <[email protected]>
Signed-off-by: Dave Kleikamp <[email protected]>
  • Loading branch information
njia authored and kleikamp committed Jun 1, 2015
1 parent c65b99f commit 55a8d02
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion fs/jfs/file.c
Original file line number Diff line number Diff line change
Expand Up @@ -76,7 +76,7 @@ static int jfs_open(struct inode *inode, struct file *file)
if (ji->active_ag == -1) {
struct jfs_sb_info *jfs_sb = JFS_SBI(inode->i_sb);
ji->active_ag = BLKTOAG(addressPXD(&ji->ixpxd), jfs_sb);
atomic_inc( &jfs_sb->bmap->db_active[ji->active_ag]);
atomic_inc(&jfs_sb->bmap->db_active[ji->active_ag]);
}
spin_unlock_irq(&ji->ag_lock);
}
Expand Down

0 comments on commit 55a8d02

Please sign in to comment.