summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorJason Wright <jason@cvs.openbsd.org>2002-08-20 18:20:23 +0000
committerJason Wright <jason@cvs.openbsd.org>2002-08-20 18:20:23 +0000
commit7fa1731ab0a1a515e17598a0437b65158e724955 (patch)
tree2773842dc9344ddb02ea9b67a7e7680407082e2a
parent72ca7392d288e96cc9882bd40cfa1b03eea9b007 (diff)
Fix error string
-rw-r--r--bin/ps/nlist.c6
1 files changed, 3 insertions, 3 deletions
diff --git a/bin/ps/nlist.c b/bin/ps/nlist.c
index 601a0db5a03..42d8b0f0314 100644
--- a/bin/ps/nlist.c
+++ b/bin/ps/nlist.c
@@ -1,4 +1,4 @@
-/* $OpenBSD: nlist.c,v 1.9 2002/06/08 22:41:46 art Exp $ */
+/* $OpenBSD: nlist.c,v 1.10 2002/08/20 18:20:22 jason Exp $ */
/* $NetBSD: nlist.c,v 1.11 1995/03/21 09:08:03 cgd Exp $ */
/*-
@@ -38,7 +38,7 @@
#if 0
static char sccsid[] = "@(#)nlist.c 8.4 (Berkeley) 4/2/94";
#else
-static char rcsid[] = "$OpenBSD: nlist.c,v 1.9 2002/06/08 22:41:46 art Exp $";
+static char rcsid[] = "$OpenBSD: nlist.c,v 1.10 2002/08/20 18:20:22 jason Exp $";
#endif
#endif /* not lint */
@@ -102,7 +102,7 @@ donlist()
eval = rval = 1;
}
if (kread(X_PHYSMEM, mempages)) {
- warnx("avail_start: %s", kvm_geterr(kd));
+ warnx("physmem: %s", kvm_geterr(kd));
eval = rval = 1;
}
if (kread(X_CCPU, ccpu)) {