From: Darrick J. Wong <djwong@xxxxxxxxxx> Explicitly cast the ondisk dquot counter argument to do_warn when complaining about incorrect quota counts. This avoids build warnings on ppc64le. Signed-off-by: Darrick J. Wong <djwong@xxxxxxxxxx> --- repair/quotacheck.c | 9 ++++++--- 1 file changed, 6 insertions(+), 3 deletions(-) diff --git a/repair/quotacheck.c b/repair/quotacheck.c index 758160d3..ba87081c 100644 --- a/repair/quotacheck.c +++ b/repair/quotacheck.c @@ -306,21 +306,24 @@ qc_check_dquot( if (be64_to_cpu(ddq->d_bcount) != qrec->bcount) { do_warn(_("%s id %u has bcount %llu, expected %"PRIu64"\n"), qflags_typestr(dquots->type), id, - be64_to_cpu(ddq->d_bcount), qrec->bcount); + (unsigned long long)be64_to_cpu(ddq->d_bcount), + qrec->bcount); chkd_flags = 0; } if (be64_to_cpu(ddq->d_rtbcount) != qrec->rtbcount) { do_warn(_("%s id %u has rtbcount %llu, expected %"PRIu64"\n"), qflags_typestr(dquots->type), id, - be64_to_cpu(ddq->d_rtbcount), qrec->rtbcount); + (unsigned long long)be64_to_cpu(ddq->d_rtbcount), + qrec->rtbcount); chkd_flags = 0; } if (be64_to_cpu(ddq->d_icount) != qrec->icount) { do_warn(_("%s id %u has icount %llu, expected %"PRIu64"\n"), qflags_typestr(dquots->type), id, - be64_to_cpu(ddq->d_icount), qrec->icount); + (unsigned long long)be64_to_cpu(ddq->d_icount), + qrec->icount); chkd_flags = 0; }