Skip to content

Commit

Permalink
Require -vv to Enable Full Precision
Browse files Browse the repository at this point in the history
  • Loading branch information
felixhandte committed Jun 9, 2021
1 parent 29d802a commit c8040d6
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion programs/util.c
Original file line number Diff line number Diff line change
Expand Up @@ -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)) {
Expand Down

0 comments on commit c8040d6

Please sign in to comment.