Cast the arguments to make_h_number() to uintmax_t before multiplying

them...  Otherwise the result will be truncated anyway.
This commit is contained in:
Joerg Wunsch 2004-06-11 11:41:33 +00:00
parent 1930e303cf
commit 1c9fe2e4b2
Notes: svn2git 2020-12-20 02:59:44 +00:00
svn path=/head/; revision=130345

View File

@ -805,9 +805,9 @@ print_label(struct sun_disklabel *sl, const char *disk, FILE *out)
if (hflag) {
fprintf(out, " %c: %10s",
'a' + i,
make_h_number(sl->sl_part[i].sdkp_nsectors * 512));
make_h_number((uintmax_t)sl->sl_part[i].sdkp_nsectors * 512));
fprintf(out, " %10s",
make_h_number(sl->sl_part[i].sdkp_cyloffset *
make_h_number((uintmax_t)sl->sl_part[i].sdkp_cyloffset *
512 * secpercyl));
} else {
fprintf(out, " %c: %10ju %10u",