summaryrefslogtreecommitdiffstats
path: root/src/unit.c
diff options
context:
space:
mode:
Diffstat (limited to 'src/unit.c')
-rw-r--r--src/unit.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/src/unit.c b/src/unit.c
index 6f3c577..38fc468 100644
--- a/src/unit.c
+++ b/src/unit.c
@@ -191,7 +191,7 @@ char *unit_bytes2str(uint64_t bytes, char *buf, size_t len)
v = unit_value2str(bytes, byte_unit, &ustr, &prec);
snprintf(buf, len, "%'.*f%3s", prec, v, ustr);
} else
- snprintf(buf, len, "%llu", (unsigned long long) bytes);
+ snprintf(buf, len, "%" PRIu64, bytes);
return buf;
}
@@ -206,7 +206,7 @@ char *unit_bit2str(uint64_t bits, char *buf, size_t len)
v = unit_value2str(bits, bit_unit, &ustr, &prec);
snprintf(buf, len, "%'.*f%3s", prec, v, ustr);
} else
- snprintf(buf, len, "%llu", (unsigned long long) bits);
+ snprintf(buf, len, "%" PRIu64, bits);
return buf;
}