aboutsummaryrefslogtreecommitdiff
path: root/util/msrtool
diff options
context:
space:
mode:
Diffstat (limited to 'util/msrtool')
-rw-r--r--util/msrtool/msrutils.c6
1 files changed, 3 insertions, 3 deletions
diff --git a/util/msrtool/msrutils.c b/util/msrtool/msrutils.c
index de3333e6db..5345275e4b 100644
--- a/util/msrtool/msrutils.c
+++ b/util/msrtool/msrutils.c
@@ -77,11 +77,11 @@ static void print_bitval(FILE *f, const struct msrbits *mb, const struct msr val
void hexprint(FILE *f, const struct msr val, const uint8_t bits) {
if (bits <= 4)
- fprintf(f, "0x%x", (uint8_t)(val.lo & 0x0f));
+ fprintf(f, "0x%x", val.lo & 0x0f);
else if (bits <= 8)
- fprintf(f, "0x%02x", (uint8_t)(val.lo & 0xff));
+ fprintf(f, "0x%02x", val.lo & 0xff);
else if (bits <= 16)
- fprintf(f, "0x%04x", (uint16_t)(val.lo & 0xffff));
+ fprintf(f, "0x%04x", val.lo & 0xffff);
else if (bits <= 32)
fprintf(f, "0x%08x", val.lo);
else