(count_entry): Fix blatant bug (typo?) that made

--megabytes report numbers in units of kilobytes.
Reported by Galen Hazelwood.
This commit is contained in:
Jim Meyering
1997-01-26 05:05:06 +00:00
parent 9d502e7240
commit 7f798f5f4f
+1 -1
View File
@@ -638,7 +638,7 @@ count_entry (char *ent, int top, dev_t last_dev)
else
{
printf ("%ld\t%s\n", output_size == size_bytes ? size
: convert_blocks (size, output_size == size_kilobytes),
: convert_blocks (size, output_size),
path->text);
}
fflush (stdout);