Module Name: src
Committed By: enami
Date: Wed Aug 18 02:53:54 UTC 2010
Modified Files:
src/bin/ls: print.c
Log Message:
Fix broken indentation. No functional change.
To generate a diff of this commit:
cvs rdiff -u -r1.47 -r1.48 src/bin/ls/print.c
Please note that diffs are not public domain; they are subject to the
copyright notices on the relevant files.
Modified files:
Index: src/bin/ls/print.c
diff -u src/bin/ls/print.c:1.47 src/bin/ls/print.c:1.48
--- src/bin/ls/print.c:1.47 Fri Apr 2 15:09:12 2010
+++ src/bin/ls/print.c Wed Aug 18 02:53:54 2010
@@ -1,4 +1,4 @@
-/* $NetBSD: print.c,v 1.47 2010/04/02 15:09:12 christos Exp $ */
+/* $NetBSD: print.c,v 1.48 2010/08/18 02:53:54 enami Exp $ */
/*
* Copyright (c) 1989, 1993, 1994
@@ -37,7 +37,7 @@
#if 0
static char sccsid[] = "@(#)print.c 8.5 (Berkeley) 7/28/94";
#else
-__RCSID("$NetBSD: print.c,v 1.47 2010/04/02 15:09:12 christos Exp $");
+__RCSID("$NetBSD: print.c,v 1.48 2010/08/18 02:53:54 enami Exp $");
#endif
#endif /* not lint */
@@ -107,15 +107,15 @@
if (f_size) {
if (f_humanize) {
if ((humanize_number(szbuf, sizeof(szbuf),
- sp->st_blocks * S_BLKSIZE,
- "", HN_AUTOSCALE,
- (HN_DECIMAL | HN_B | HN_NOSPACE))) == -1)
- err(1, "humanize_number");
- (void)printf("%*s ", dp->s_block, szbuf);
+ sp->st_blocks * S_BLKSIZE,
+ "", HN_AUTOSCALE,
+ (HN_DECIMAL | HN_B | HN_NOSPACE))) == -1)
+ err(1, "humanize_number");
+ (void)printf("%*s ", dp->s_block, szbuf);
} else {
- (void)printf("%*llu ", dp->s_block,
- (long long)howmany(sp->st_blocks,
- blocksize));
+ (void)printf("%*llu ", dp->s_block,
+ (long long)howmany(sp->st_blocks,
+ blocksize));
}
}
(void)strmode(sp->st_mode, buf);