1
0
mirror of https://git.FreeBSD.org/src.git synced 2024-12-03 09:00:21 +00:00

Correct an error message presumably as a result of cut/paste.

kvm_getfiles() referred to itself as kvm_getprocs().
This commit is contained in:
Peter Wemm 2000-02-18 16:39:00 +00:00
parent fb8dde3146
commit 392cc8343e
Notes: svn2git 2020-12-20 02:59:44 +00:00
svn path=/head/; revision=57321

View File

@ -138,7 +138,7 @@ kvm_getfiles(kd, op, arg, cnt)
mib[1] = KERN_FILE;
st = sysctl(mib, 2, NULL, &size, NULL, 0);
if (st == -1) {
_kvm_syserr(kd, kd->program, "kvm_getprocs");
_kvm_syserr(kd, kd->program, "kvm_getfiles");
return (0);
}
if (kd->argspc == 0)