summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authormickey <mickey@openbsd.org>2001-03-23 00:24:10 +0000
committermickey <mickey@openbsd.org>2001-03-23 00:24:10 +0000
commit28188095cd6c7f7b0ab6a4fb806bbca94c19e75e (patch)
tree81c187392943659561f61d77ddd64e4d659e3662
parentcache alignment games (diff)
downloadwireguard-openbsd-28188095cd6c7f7b0ab6a4fb806bbca94c19e75e.tar.xz
wireguard-openbsd-28188095cd6c7f7b0ab6a4fb806bbca94c19e75e.zip
protect func ptr ars w/ __P
-rw-r--r--sys/sys/mount.h4
1 files changed, 2 insertions, 2 deletions
diff --git a/sys/sys/mount.h b/sys/sys/mount.h
index 1e210a7c63c..d2286cffd6e 100644
--- a/sys/sys/mount.h
+++ b/sys/sys/mount.h
@@ -1,4 +1,4 @@
-/* $OpenBSD: mount.h,v 1.38 2001/02/20 01:50:11 assar Exp $ */
+/* $OpenBSD: mount.h,v 1.39 2001/03/23 00:24:10 mickey Exp $ */
/* $NetBSD: mount.h,v 1.48 1996/02/18 11:55:47 fvdl Exp $ */
/*
@@ -431,7 +431,7 @@ struct vfsconf {
int vfc_typenum; /* historic filesystem type number */
int vfc_refcount; /* number mounted of this type */
int vfc_flags; /* permanent flags */
- int (*vfc_mountroot)(void); /* if != NULL, routine to mount root */
+ int (*vfc_mountroot)__P((void)); /* if != NULL, routine to mount root */
struct vfsconf *vfc_next; /* next in list */
};