Source-Changes-HG archive
[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index][Old Index]
[src/trunk]: src/usr.bin/vmstat Print newline before pool stats.
details: https://anonhg.NetBSD.org/src/rev/9a72bdc2f9fe
branches: trunk
changeset: 535120:9a72bdc2f9fe
user: soren <soren%NetBSD.org@localhost>
date: Sat Aug 10 19:08:41 2002 +0000
description:
Print newline before pool stats.
diffstat:
usr.bin/vmstat/vmstat.c | 8 ++++----
1 files changed, 4 insertions(+), 4 deletions(-)
diffs (29 lines):
diff -r a0faf4adbbe6 -r 9a72bdc2f9fe usr.bin/vmstat/vmstat.c
--- a/usr.bin/vmstat/vmstat.c Sat Aug 10 18:49:56 2002 +0000
+++ b/usr.bin/vmstat/vmstat.c Sat Aug 10 19:08:41 2002 +0000
@@ -1,4 +1,4 @@
-/* $NetBSD: vmstat.c,v 1.101 2002/06/30 00:10:34 sommerfeld Exp $ */
+/* $NetBSD: vmstat.c,v 1.102 2002/08/10 19:08:41 soren Exp $ */
/*-
* Copyright (c) 1998, 2000, 2001 The NetBSD Foundation, Inc.
@@ -81,7 +81,7 @@
#if 0
static char sccsid[] = "@(#)vmstat.c 8.2 (Berkeley) 3/1/95";
#else
-__RCSID("$NetBSD: vmstat.c,v 1.101 2002/06/30 00:10:34 sommerfeld Exp $");
+__RCSID("$NetBSD: vmstat.c,v 1.102 2002/08/10 19:08:41 soren Exp $");
#endif
#endif /* not lint */
@@ -1050,8 +1050,8 @@
totuse += ks->ks_memuse;
totreq += ks->ks_calls;
}
- (void)printf("\nMemory Totals: In Use Free Requests\n");
- (void)printf(" %7ldK %6ldK %8ld\n",
+ (void)printf("\nMemory totals: In Use Free Requests\n");
+ (void)printf(" %7ldK %6ldK %8ld\n\n",
(totuse + 1023) / 1024, (totfree + 1023) / 1024, totreq);
}
Home |
Main Index |
Thread Index |
Old Index