From f30035e88bad1748e8e5546ef43409862db1d91e Mon Sep 17 00:00:00 2001 From: Rob Landley Date: Mon, 26 Jun 2017 15:32:27 -0500 Subject: Most things seem to want the "b" suffix to mean 512 instead of 1. (According to the git history I added "b" for "od" but the man page says 512 there too.) --- lib/lib.c | 9 +++++---- 1 file changed, 5 insertions(+), 4 deletions(-) (limited to 'lib/lib.c') diff --git a/lib/lib.c b/lib/lib.c index ceb1bc7d..6e88fd25 100644 --- a/lib/lib.c +++ b/lib/lib.c @@ -299,11 +299,12 @@ long long atolx(char *numstr) val = xstrtol(numstr, &c, 0); if (c != numstr && *c && (end = strchr(suffixes, tolower(*c)))) { - int shift = end-suffixes-2; + int shift = end-suffixes-1; - if (shift >= 0) { - if (toupper(*++c)=='d') do val *= 1000; while (shift--); - else val *= 1024LL<<(shift*10); + if (!shift) val *= 512; + else if (shift>0) { + if (toupper(*++c)=='d') while (shift--) val *= 1000; + else val *= 1LL<<(shift*10); } } while (isspace(*c)) c++; -- cgit v1.2.3