Improve consistency of indentation. Whitespace change only.

This commit is contained in:
Michael Tuexen 2018-07-02 09:09:07 +00:00
parent 99208b820f
commit e4450a19d4

View File

@ -74,11 +74,11 @@ printfile(int fileid, int verbose, int humanized)
err(1, "can't stat file id %d", fileid);
} else {
if (humanized) {
humanize_number(buf, sizeof(buf), stat.size,
"", HN_AUTOSCALE, HN_DECIMAL | HN_NOSPACE);
humanize_number(buf, sizeof(buf), stat.size,
"", HN_AUTOSCALE, HN_DECIMAL | HN_NOSPACE);
printf("%2d %4d %p %5s %s",
stat.id, stat.refs, stat.address, buf, stat.name);
printf("%2d %4d %p %5s %s",
stat.id, stat.refs, stat.address, buf, stat.name);
} else {
printf("%2d %4d %p %8zx %s",
stat.id, stat.refs, stat.address, stat.size, stat.name);