From 9c340ce014e70d413e7a01f0d0b77376a24db54d Mon Sep 17 00:00:00 2001 From: "W. Felix Handte" Date: Wed, 9 Jun 2021 16:13:00 -0400 Subject: [PATCH] Require `-vv` to Enable Full Precision --- programs/util.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/programs/util.c b/programs/util.c index 838da830..2622ae82 100644 --- a/programs/util.c +++ b/programs/util.c @@ -306,7 +306,7 @@ U64 UTIL_getFileSizeStat(const stat_t* statbuf) UTIL_HumanReadableSize_t UTIL_makeHumanReadableSize(U64 size) { UTIL_HumanReadableSize_t hrs; - if (g_utilDisplayLevel > 2) { + if (g_utilDisplayLevel > 3) { /* In verbose mode, do not scale sizes down, except in the case of * values that exceed the integral precision of a double. */ if (size >= (1ull << 53)) {