Skip to content

Commit

Permalink
xfs: Clean up xfs_trans_dup_dqinfo
Browse files Browse the repository at this point in the history
Fixed two missing spaces.

Signed-off-by: Nan Jia <jiananmail@gmail.com>
Reviewed-by: Dave Chinner <dchinner@redhat.com>
Signed-off-by: Dave Chinner <david@fromorbit.com>
  • Loading branch information
Nan Jia authored and Dave Chinner committed Jun 1, 2015
1 parent 4d66ea0 commit 339e4f6
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions fs/xfs/xfs_trans_dquot.c
Original file line number Diff line number Diff line change
Expand Up @@ -90,7 +90,7 @@ xfs_trans_dup_dqinfo(
xfs_trans_t *ntp)
{
xfs_dqtrx_t *oq, *nq;
int i,j;
int i, j;
xfs_dqtrx_t *oqa, *nqa;
ulong blk_res_used;

Expand All @@ -103,7 +103,7 @@ xfs_trans_dup_dqinfo(
* Because the quota blk reservation is carried forward,
* it is also necessary to carry forward the DQ_DIRTY flag.
*/
if(otp->t_flags & XFS_TRANS_DQ_DIRTY)
if (otp->t_flags & XFS_TRANS_DQ_DIRTY)
ntp->t_flags |= XFS_TRANS_DQ_DIRTY;

for (j = 0; j < XFS_QM_TRANS_DQTYPES; j++) {
Expand Down

0 comments on commit 339e4f6

Please sign in to comment.