aboutsummaryrefslogtreecommitdiffstats
path: root/fs/xfs/xfs_qm_bhv.c
diff options
context:
space:
mode:
Diffstat (limited to 'fs/xfs/xfs_qm_bhv.c')
-rw-r--r--fs/xfs/xfs_qm_bhv.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/fs/xfs/xfs_qm_bhv.c b/fs/xfs/xfs_qm_bhv.c
index 73a1d77ec187..3091e4bc04ef 100644
--- a/fs/xfs/xfs_qm_bhv.c
+++ b/fs/xfs/xfs_qm_bhv.c
@@ -40,7 +40,7 @@ xfs_fill_statvfs_from_dquot(
40 statp->f_files = limit; 40 statp->f_files = limit;
41 statp->f_ffree = 41 statp->f_ffree =
42 (statp->f_files > dqp->q_res_icount) ? 42 (statp->f_files > dqp->q_res_icount) ?
43 (statp->f_ffree - dqp->q_res_icount) : 0; 43 (statp->f_files - dqp->q_res_icount) : 0;
44 } 44 }
45} 45}
46 46