diff options
author | joerg <joerg@FreeBSD.org> | 2004-06-11 11:41:33 +0000 |
---|---|---|
committer | joerg <joerg@FreeBSD.org> | 2004-06-11 11:41:33 +0000 |
commit | 24688fcbd1f219bdd16b0047a9b57581a6fb4af6 (patch) | |
tree | 89e1094d2dc29a992831399fa110df55063f23b9 /sbin/sunlabel | |
parent | 86602fc06c6eef73f48ce541f6b8d2b6af993629 (diff) | |
download | FreeBSD-src-24688fcbd1f219bdd16b0047a9b57581a6fb4af6.zip FreeBSD-src-24688fcbd1f219bdd16b0047a9b57581a6fb4af6.tar.gz |
Cast the arguments to make_h_number() to uintmax_t before multiplying
them... Otherwise the result will be truncated anyway.
Diffstat (limited to 'sbin/sunlabel')
-rw-r--r-- | sbin/sunlabel/sunlabel.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/sbin/sunlabel/sunlabel.c b/sbin/sunlabel/sunlabel.c index ecf2755..11a73ac 100644 --- a/sbin/sunlabel/sunlabel.c +++ b/sbin/sunlabel/sunlabel.c @@ -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", |