Restore (intmax_t) casts I lost during the last change & unbreak the build.
This commit is contained in:
parent
3c1e5036f6
commit
df30d890f6
@ -273,8 +273,9 @@ main(int argc, char *argv[])
|
|||||||
(void)printf("\t%s\n", p->fts_path);
|
(void)printf("\t%s\n", p->fts_path);
|
||||||
} else {
|
} else {
|
||||||
(void)printf("%jd\t%s\n",
|
(void)printf("%jd\t%s\n",
|
||||||
howmany(p->fts_bignum * cblocksize,
|
(intmax_t)howmany(p->fts_bignum *
|
||||||
blocksize), p->fts_path);
|
cblocksize, blocksize),
|
||||||
|
p->fts_path);
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
break;
|
break;
|
||||||
@ -304,8 +305,9 @@ main(int argc, char *argv[])
|
|||||||
(void)printf("\t%s\n", p->fts_path);
|
(void)printf("\t%s\n", p->fts_path);
|
||||||
} else {
|
} else {
|
||||||
(void)printf("%jd\t%s\n",
|
(void)printf("%jd\t%s\n",
|
||||||
howmany(curblocks * cblocksize,
|
(intmax_t)howmany(curblocks *
|
||||||
blocksize), p->fts_path);
|
cblocksize, blocksize),
|
||||||
|
p->fts_path);
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
|
Loading…
Reference in New Issue
Block a user