From 9c3b84a3049a152dd6a2b9e3aecaf897f57ac28e Mon Sep 17 00:00:00 2001 From: Denys Vlasenko Date: Mon, 18 Jan 2010 01:55:00 +0100 Subject: ls: make it so that group never glues itself to file size + smaller enhancements: inode is long long; -h is a bit narrower; etc Signed-off-by: Denys Vlasenko --- libbb/human_readable.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'libbb/human_readable.c') diff --git a/libbb/human_readable.c b/libbb/human_readable.c index 3050d7d1e..4228aaf42 100644 --- a/libbb/human_readable.c +++ b/libbb/human_readable.c @@ -58,7 +58,7 @@ const char* FAST_FUNC make_human_readable_str(unsigned long long val, /* will just print it as ulonglong (below) */ } else { while ((val >= 1024) - /* && (u < unit_chars + sizeof(unit_chars) - 1) - never happens */ + /* && (u < unit_chars + sizeof(unit_chars) - 1) - always true */ ) { fmt = "%llu.%u%c"; u++; -- cgit v1.2.3