diff options
author | Ted Unangst <tedu@cvs.openbsd.org> | 2003-07-22 01:05:08 +0000 |
---|---|---|
committer | Ted Unangst <tedu@cvs.openbsd.org> | 2003-07-22 01:05:08 +0000 |
commit | bcfb04daae23e7367c282ce19186bd8666214a1d (patch) | |
tree | c4cdab2d2bb413027d3199c8f04ae5026c7fc7e0 /sys | |
parent | e68395b2a10db2e6c75ef05f220b36118095529d (diff) |
void *, not caddr_t. missed in last commit. thanks Marco Peereboom
Diffstat (limited to 'sys')
-rw-r--r-- | sys/sys/event.h | 4 |
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 */ |