summaryrefslogtreecommitdiffstats
path: root/sys/sys/event.h
diff options
context:
space:
mode:
authortedu <tedu@openbsd.org>2003-07-22 01:05:07 +0000
committertedu <tedu@openbsd.org>2003-07-22 01:05:07 +0000
commit93b316990d997704fa88db87ad537455f0730668 (patch)
treeae402b086ed8e7c807d8d244f607e60764033d2f /sys/sys/event.h
parentmake it compile again damnit; from slash@peereboom.us (diff)
downloadwireguard-openbsd-93b316990d997704fa88db87ad537455f0730668.tar.xz
wireguard-openbsd-93b316990d997704fa88db87ad537455f0730668.zip
void *, not caddr_t. missed in last commit. thanks Marco Peereboom
Diffstat (limited to 'sys/sys/event.h')
-rw-r--r--sys/sys/event.h4
1 files changed, 2 insertions, 2 deletions
diff --git a/sys/sys/event.h b/sys/sys/event.h
index 2bf83d52640..85886bd470f 100644
--- a/sys/sys/event.h
+++ b/sys/sys/event.h
@@ -1,4 +1,4 @@
-/* $OpenBSD: event.h,v 1.6 2003/06/27 16:20:58 nate Exp $ */
+/* $OpenBSD: event.h,v 1.7 2003/07/22 01:05:07 tedu Exp $ */
/*-
* Copyright (c) 1999,2000,2001 Jonathan Lemon <jlemon@FreeBSD.org>
@@ -144,7 +144,7 @@ struct knote {
struct proc *p_proc; /* proc pointer */
} kn_ptr;
const struct filterops *kn_fop;
- caddr_t kn_hook;
+ void *kn_hook;
#define KN_ACTIVE 0x01 /* event has been triggered */
#define KN_QUEUED 0x02 /* event is on queue */
#define KN_DISABLED 0x04 /* event is disabled */