]> git.ipfire.org Git - thirdparty/zstd.git/commitdiff
Require `-vv` to Enable Full Precision
authorW. Felix Handte <w@felixhandte.com>
Wed, 9 Jun 2021 20:13:00 +0000 (16:13 -0400)
committerW. Felix Handte <w@felixhandte.com>
Thu, 10 Jun 2021 16:53:07 +0000 (12:53 -0400)
programs/util.c

index 838da830406691215a7d9039fb16f36ee5896076..2622ae825fad20953b918028d3dbd152af8d4ce2 100644 (file)
@@ -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)) {