diff options
| author | simonb <simonb@NetBSD.org> | 2006-04-27 09:04:41 +0000 |
|---|---|---|
| committer | simonb <simonb@NetBSD.org> | 2006-04-27 09:04:41 +0000 |
| commit | 47890115bd2ea68946af2fa543d00bd01ced2d4f (patch) | |
| tree | f66732001b64618386131a37975792bd81013986 /usr.bin/vmstat | |
| parent | 7cde219c2b273b0c423bee5f27f5ba2b392af597 (diff) | |
Unwrap a not too long line.
Diffstat (limited to 'usr.bin/vmstat')
| -rw-r--r-- | usr.bin/vmstat/vmstat.c | 7 |
1 files changed, 3 insertions, 4 deletions
diff --git a/usr.bin/vmstat/vmstat.c b/usr.bin/vmstat/vmstat.c index 842fa0ae7d1..498e1e0100d 100644 --- a/usr.bin/vmstat/vmstat.c +++ b/usr.bin/vmstat/vmstat.c @@ -1,4 +1,4 @@ -/* $NetBSD: vmstat.c,v 1.140 2006/04/14 13:12:37 blymn Exp $ */ +/* $NetBSD: vmstat.c,v 1.141 2006/04/27 09:04:41 simonb Exp $ */ /*- * Copyright (c) 1998, 2000, 2001 The NetBSD Foundation, Inc. @@ -77,7 +77,7 @@ __COPYRIGHT("@(#) Copyright (c) 1980, 1986, 1991, 1993\n\ #if 0 static char sccsid[] = "@(#)vmstat.c 8.2 (Berkeley) 3/1/95"; #else -__RCSID("$NetBSD: vmstat.c,v 1.140 2006/04/14 13:12:37 blymn Exp $"); +__RCSID("$NetBSD: vmstat.c,v 1.141 2006/04/27 09:04:41 simonb Exp $"); #endif #endif /* not lint */ @@ -880,8 +880,7 @@ drvstats(void) for (dn = 0; dn < ndrive; ++dn) { if (!drv_select[dn]) continue; - (void)printf("%2.0f ", - (cur.rxfer[dn] + cur.wxfer[dn]) / etime); + (void)printf("%2.0f ", (cur.rxfer[dn] + cur.wxfer[dn]) / etime); } } |
