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) --- quotacheck_v2.c | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) (limited to 'quotacheck_v2.c') diff --git a/quotacheck_v2.c b/quotacheck_v2.c index fe607a1..f567a2a 100644 --- a/quotacheck_v2.c +++ b/quotacheck_v2.c @@ -223,7 +223,7 @@ static void check_read_blk(int fd, uint blk, dqbuf_t buf) } } -static int check_tree_ref(uint blk, uint ref, uint blocks, int check_use, uint * corrupted, +static int check_tree_ref(uint blk, uint ref, uint blocks, int check_use, int * corrupted, uint * lblk) { if (check_blkref(ref, blocks) < 0) { @@ -239,7 +239,7 @@ static int check_tree_ref(uint blk, uint ref, uint blocks, int check_use, uint * } /* Check block with structures */ -static int check_data_blk(int fd, uint blk, int type, uint blocks, uint * corrupted, uint * lblk) +static int check_data_blk(int fd, uint blk, int type, uint blocks, int * corrupted, uint * lblk) { dqbuf_t buf = getdqbuf(); struct v2_disk_dqdbheader *head = (struct v2_disk_dqdbheader *)buf; @@ -265,7 +265,7 @@ static int check_data_blk(int fd, uint blk, int type, uint blocks, uint * corrup } /* Check one tree block */ -static int check_tree_blk(int fd, uint blk, int depth, int type, uint blocks, uint * corrupted, +static int check_tree_blk(int fd, uint blk, int depth, int type, uint blocks, int * corrupted, uint * lblk) { dqbuf_t buf = getdqbuf(); -- cgit v1.2.3