diff options
author | David Gwynne <dlg@cvs.openbsd.org> | 2006-06-13 02:11:28 +0000 |
---|---|---|
committer | David Gwynne <dlg@cvs.openbsd.org> | 2006-06-13 02:11:28 +0000 |
commit | 13abeea1c1af08bdd8697290149bddcee47cb00f (patch) | |
tree | 1e7b7a343f5696b2c0dea6d04c00d0a8372f1406 /usr.bin/vmstat | |
parent | e047069155e0450e8540244d4aefc5b5acfada1c (diff) |
fix a pasto in a comment: wxfers are for writes, not reads.
found by deanna
Diffstat (limited to 'usr.bin/vmstat')
-rw-r--r-- | usr.bin/vmstat/dkstats.h | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/usr.bin/vmstat/dkstats.h b/usr.bin/vmstat/dkstats.h index 62bad32d7f8..351e0b2ada4 100644 --- a/usr.bin/vmstat/dkstats.h +++ b/usr.bin/vmstat/dkstats.h @@ -1,4 +1,4 @@ -/* $OpenBSD: dkstats.h,v 1.9 2004/02/15 02:45:47 tedu Exp $ */ +/* $OpenBSD: dkstats.h,v 1.10 2006/06/13 02:11:27 dlg Exp $ */ /* $NetBSD: dkstats.h,v 1.1 1996/05/10 23:19:28 thorpej Exp $ */ /* @@ -42,7 +42,7 @@ struct _disk { int *dk_select; /* Display stats for selected disks. */ char **dk_name; /* Disk names (sd0, wd1, etc). */ u_int64_t *dk_rxfer; /* # of read transfers. */ - u_int64_t *dk_wxfer; /* # of read transfers. */ + u_int64_t *dk_wxfer; /* # of write transfers. */ u_int64_t *dk_seek; /* # of seeks (currently unused). */ u_int64_t *dk_rbytes; /* # of bytes read. */ u_int64_t *dk_wbytes; /* # of bytes written. */ |