summaryrefslogtreecommitdiff
path: root/repquota.c
diff options
context:
space:
mode:
Diffstat (limited to 'repquota.c')
-rw-r--r--repquota.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/repquota.c b/repquota.c
index fae5911..adcfa42 100644
--- a/repquota.c
+++ b/repquota.c
@@ -158,7 +158,7 @@ static void parse_options(int argcnt, char **argstr)
}
/* Are we over soft or hard limit? */
-static char overlim(uint usage, uint softlim, uint hardlim)
+static char overlim(qsize_t usage, qsize_t softlim, qsize_t hardlim)
{
if ((usage > softlim && softlim) || (usage > hardlim && hardlim))
return '+';