Restore (intmax_t) casts I lost during the last change & unbreak the build.

This commit is contained in:
Max Laier 2008-11-06 23:55:28 +00:00
parent 36d227d9ed
commit 246b6a6d70
Notes: svn2git 2020-12-20 02:59:44 +00:00
svn path=/head/; revision=184742

View File

@ -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);
}
}