summaryrefslogtreecommitdiffstats
path: root/sys
diff options
context:
space:
mode:
authordrahn <drahn@openbsd.org>2001-07-18 13:47:11 +0000
committerdrahn <drahn@openbsd.org>2001-07-18 13:47:11 +0000
commitd4671d512f5c75f1dd1db70a3655517c4cfead08 (patch)
tree1843f057499ff291c165851813a580a4991a9cd0 /sys
parentCDIAGFLAGS (diff)
downloadwireguard-openbsd-d4671d512f5c75f1dd1db70a3655517c4cfead08.tar.xz
wireguard-openbsd-d4671d512f5c75f1dd1db70a3655517c4cfead08.zip
Fix prototype that art missed...
Diffstat (limited to 'sys')
-rw-r--r--sys/arch/powerpc/include/pmap.h4
1 files changed, 2 insertions, 2 deletions
diff --git a/sys/arch/powerpc/include/pmap.h b/sys/arch/powerpc/include/pmap.h
index 4d1f268427d..da674f91f9c 100644
--- a/sys/arch/powerpc/include/pmap.h
+++ b/sys/arch/powerpc/include/pmap.h
@@ -1,4 +1,4 @@
-/* $OpenBSD: pmap.h,v 1.14 2001/07/18 10:47:05 art Exp $ */
+/* $OpenBSD: pmap.h,v 1.15 2001/07/18 13:47:11 drahn Exp $ */
/* $NetBSD: pmap.h,v 1.1 1996/09/30 16:34:29 ws Exp $ */
/*-
@@ -72,7 +72,7 @@ struct pmap {
};
typedef struct pmap *pmap_t;
-void ptemodify(vm_offset_t pa, u_int mask, u_int val);
+boolean_t ptemodify(paddr_t pa, u_int mask, u_int val);
#ifdef _KERNEL
extern struct pmap kernel_pmap_;