xfs: Clean up xfs_trans_dup_dqinfo
authorNan Jia <jiananmail@gmail.com>
Mon, 1 Jun 2015 00:50:00 +0000 (10:50 +1000)
committerDave Chinner <david@fromorbit.com>
Mon, 1 Jun 2015 00:50:00 +0000 (10:50 +1000)
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>
fs/xfs/xfs_trans_dquot.c

index 58c0c6b2f4ed2fb7343070f4e973e2451eba1246..ce78534a047eebe9a1b86cec00f7f4b3f396489b 100644 (file)
@@ -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;
 
@@ -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++) {
This page took 0.04195 seconds and 5 git commands to generate.