diff options
author | 2006-11-29 13:27:21 +0000 | |
---|---|---|
committer | 2006-11-29 13:27:21 +0000 | |
commit | 2f1ad4c7cdd0430a3bc9e4dbc988e429a0e6eda4 (patch) | |
tree | 87acf06c8366a4776b5ff52e5cd9c26ce1cde191 /lib/libkvm/kvm_mips64.c | |
parent | Update the sensor description based on the GPS operation mode. Initial (diff) | |
download | wireguard-openbsd-2f1ad4c7cdd0430a3bc9e4dbc988e429a0e6eda4.tar.xz wireguard-openbsd-2f1ad4c7cdd0430a3bc9e4dbc988e429a0e6eda4.zip |
Fix cut'n'paste abuse in error message.
Diffstat (limited to 'lib/libkvm/kvm_mips64.c')
-rw-r--r-- | lib/libkvm/kvm_mips64.c | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/lib/libkvm/kvm_mips64.c b/lib/libkvm/kvm_mips64.c index 1747652664a..85043f7c25b 100644 --- a/lib/libkvm/kvm_mips64.c +++ b/lib/libkvm/kvm_mips64.c @@ -1,4 +1,4 @@ -/* $OpenBSD: kvm_mips64.c,v 1.3 2006/03/20 15:11:48 mickey Exp $ */ +/* $OpenBSD: kvm_mips64.c,v 1.4 2006/11/29 13:27:21 miod Exp $ */ /* $NetBSD: kvm_mips.c,v 1.3 1996/03/18 22:33:44 thorpej Exp $ */ /*- @@ -42,7 +42,7 @@ #if 0 static char sccsid[] = "@(#)kvm_mips.c 8.1 (Berkeley) 6/4/93"; #else -static char *rcsid = "$OpenBSD: kvm_mips64.c,v 1.3 2006/03/20 15:11:48 mickey Exp $"; +static char *rcsid = "$OpenBSD: kvm_mips64.c,v 1.4 2006/11/29 13:27:21 miod Exp $"; #endif #endif /* LIBC_SCCS and not lint */ @@ -108,7 +108,7 @@ _kvm_initvtop(kvm_t *kd) return (-1); } if (KREAD(kd, (u_long)nlist[1].n_value, &vm->Sysmapsize)) { - _kvm_err(kd, kd->program, "cannot read mmutype"); + _kvm_err(kd, kd->program, "cannot read Sysmapsize"); return (-1); } return (0); |