diff options
author | Mike Larkin <mlarkin@cvs.openbsd.org> | 2018-04-10 06:34:05 +0000 |
---|---|---|
committer | Mike Larkin <mlarkin@cvs.openbsd.org> | 2018-04-10 06:34:05 +0000 |
commit | 785625a1e62daf057e9a0d41de3f5b0a2f32663c (patch) | |
tree | bc024b1e5c2f0d6ce988781da9a2232093339288 /usr.bin | |
parent | b3265514c8aedf6de4daf789d258d2e9e8935904 (diff) |
typo: "anon's" -> "anons"
ok jmc, krw, deraadt
Diffstat (limited to 'usr.bin')
-rw-r--r-- | usr.bin/vmstat/vmstat.c | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/usr.bin/vmstat/vmstat.c b/usr.bin/vmstat/vmstat.c index 6619a06e2f2..fcfa4b553d6 100644 --- a/usr.bin/vmstat/vmstat.c +++ b/usr.bin/vmstat/vmstat.c @@ -1,5 +1,5 @@ /* $NetBSD: vmstat.c,v 1.29.4.1 1996/06/05 00:21:05 cgd Exp $ */ -/* $OpenBSD: vmstat.c,v 1.142 2017/05/10 08:37:15 mpi Exp $ */ +/* $OpenBSD: vmstat.c,v 1.143 2018/04/10 06:34:04 mlarkin Exp $ */ /* * Copyright (c) 1980, 1986, 1991, 1993 @@ -516,8 +516,8 @@ dosum(void) /* swap */ (void)printf("%11u swap pages\n", uvmexp.swpages); (void)printf("%11u swap pages in use\n", uvmexp.swpginuse); - (void)printf("%11u total anon's in system\n", uvmexp.nanon); - (void)printf("%11u free anon's\n", uvmexp.nfreeanon); + (void)printf("%11u total anons in system\n", uvmexp.nanon); + (void)printf("%11u free anons\n", uvmexp.nfreeanon); /* stat counters */ (void)printf("%11u page faults\n", uvmexp.faults); |