From 163122f4ead1f93c8d4dce369043f609efffd604 Mon Sep 17 00:00:00 2001 From: jkar8572 Date: Wed, 21 Feb 2007 13:51:25 +0000 Subject: * fixed XFS handling to work with loopback mounted devices (Jan Kara) * fixed mountpoints scanning to make XFS -x delete command work (Jan Kara) * fixes of signed vs unsigned int issues (Jan Kara) * fixed a format string bug in reporting of raw grace times in repquota (Jan Kara) --- quotaio_v2.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'quotaio_v2.c') diff --git a/quotaio_v2.c b/quotaio_v2.c index bf4aed0..39d0517 100644 --- a/quotaio_v2.c +++ b/quotaio_v2.c @@ -471,7 +471,7 @@ static int do_insert_tree(struct quota_handle *h, struct dquot *dquot, uint * tr /* Wrapper for inserting quota structure into tree */ static inline void dq_insert_tree(struct quota_handle *h, struct dquot *dquot) { - int tmp = V2_DQTREEOFF; + uint tmp = V2_DQTREEOFF; if (do_insert_tree(h, dquot, &tmp, 0) < 0) die(2, _("Cannot write quota (id %u): %s\n"), (uint) dquot->dq_id, strerror(errno)); -- cgit v1.2.3