diff options
author | ru <ru@FreeBSD.org> | 2005-11-24 09:51:59 +0000 |
---|---|---|
committer | ru <ru@FreeBSD.org> | 2005-11-24 09:51:59 +0000 |
commit | 6968f8c5bdd865bebc60edbb6b028f82af39c3f2 (patch) | |
tree | 0a1e1aaadc2f750f5306e4a0559365a25d1575ef /sys | |
parent | 7eed0b99586490a66e07ccd83a9e9f2ca8ed6fdc (diff) | |
download | FreeBSD-src-6968f8c5bdd865bebc60edbb6b028f82af39c3f2.zip FreeBSD-src-6968f8c5bdd865bebc60edbb6b028f82af39c3f2.tar.gz |
Fix prototype to match the code and documentation.
Diffstat (limited to 'sys')
-rw-r--r-- | sys/sys/event.h | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/sys/sys/event.h b/sys/sys/event.h index 5ea22db..4395cbb 100644 --- a/sys/sys/event.h +++ b/sys/sys/event.h @@ -235,7 +235,7 @@ struct timespec; __BEGIN_DECLS int kqueue(void); -int kevent(int kq, struct kevent *changelist, int nchanges, +int kevent(int kq, const struct kevent *changelist, int nchanges, struct kevent *eventlist, int nevents, const struct timespec *timeout); __END_DECLS |