Author: tuexen Date: Mon Jul 2 09:09:07 2018 New Revision: 335858 URL: https://svnweb.freebsd.org/changeset/base/335858
Log: Improve consistency of indentation. Whitespace change only. Modified: head/sbin/kldstat/kldstat.c Modified: head/sbin/kldstat/kldstat.c ============================================================================== --- head/sbin/kldstat/kldstat.c Mon Jul 2 07:58:57 2018 (r335857) +++ head/sbin/kldstat/kldstat.c Mon Jul 2 09:09:07 2018 (r335858) @@ -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); _______________________________________________ svn-src-head@freebsd.org mailing list https://lists.freebsd.org/mailman/listinfo/svn-src-head To unsubscribe, send any mail to "svn-src-head-unsubscr...@freebsd.org"