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