aboutsummaryrefslogtreecommitdiffstats
path: root/nnn.c
diff options
context:
space:
mode:
authorGravatar Alex Suykov <alex.suykov@gmail.com>2018-03-01 09:52:25 +0200
committerGravatar Arun Prakash Jana <engineerarun@gmail.com>2018-03-01 13:22:25 +0530
commit7be0726164442a83f47e5a9a0cdf2db343832d23 (patch)
tree384cf8e6604104c3ea9a603917a7fd0e3976eb42 /nnn.c
parent1ad5a7bd7dcee43ecc80b8f2ad0eb2a904c0b0a8 (diff)
downloadnnn-7be0726164442a83f47e5a9a0cdf2db343832d23.tar.gz
Integer-only coolsize() (#84)
Diffstat (limited to 'nnn.c')
-rw-r--r--nnn.c20
1 files changed, 15 insertions, 5 deletions
diff --git a/nnn.c b/nnn.c
index 0aaa087..882a470 100644
--- a/nnn.c
+++ b/nnn.c
@@ -80,6 +80,7 @@
#endif
#include <ftw.h>
#include <wchar.h>
+#include <inttypes.h>
#include "nnn.h"
@@ -1439,10 +1440,8 @@ coolsize(off_t size)
{
static const char * const U = "BKMGTPEZY";
static char size_buf[12]; /* Buffer to hold human readable size */
- static int i;
-
- static long double rem;
- static const double div_2_pow_10 = 1.0 / 1024.0;
+ static int rem, i;
+ static int fdig; /* number of fractional digits to show */
i = 0;
rem = 0;
@@ -1453,7 +1452,18 @@ coolsize(off_t size)
++i;
}
- snprintf(size_buf, 12, "%.*Lf%c", i, size + rem * div_2_pow_10, U[i]);
+ rem = (1000 * rem) >> 10; /* convert 1024th fractions to 1000th */
+ fdig = 3;
+
+ /* Show 1 decimal for KB sizes and 2 decimals for MBs. */
+ if (i < 3) { --fdig; rem = (rem + 5) / 10; }
+ if (i < 2) { --fdig; rem = (rem + 5) / 10; }
+
+ if (i > 0)
+ snprintf(size_buf, 12, "%" PRId64 ".%0*i%c", size, fdig, rem, U[i]);
+ else
+ snprintf(size_buf, 12, "%" PRId64 "%c", size, U[i]);
+
return size_buf;
}