summaryrefslogtreecommitdiffstats
path: root/sys/sys/event.h
diff options
context:
space:
mode:
authorrdivacky <rdivacky@FreeBSD.org>2009-09-17 17:41:28 +0000
committerrdivacky <rdivacky@FreeBSD.org>2009-09-17 17:41:28 +0000
commit1f00412058832a01f50106b49111b327620dc82d (patch)
treee4c086a6e4473bb5d42bf24633dd2ea7b154ed70 /sys/sys/event.h
parent2839ba8b80acdc0500628ca6e0e8606fe8dd4b8d (diff)
downloadFreeBSD-src-1f00412058832a01f50106b49111b327620dc82d.zip
FreeBSD-src-1f00412058832a01f50106b49111b327620dc82d.tar.gz
Make these argument/variable unsigned as the defines for them don't fit
into signed 32bit integer. Approved by: ed (mentor, implicit) Approved by: sson
Diffstat (limited to 'sys/sys/event.h')
-rw-r--r--sys/sys/event.h2
1 files changed, 1 insertions, 1 deletions
diff --git a/sys/sys/event.h b/sys/sys/event.h
index ec76f35..e4917cc 100644
--- a/sys/sys/event.h
+++ b/sys/sys/event.h
@@ -191,7 +191,7 @@ struct filterops {
int (*f_attach)(struct knote *kn);
void (*f_detach)(struct knote *kn);
int (*f_event)(struct knote *kn, long hint);
- void (*f_touch)(struct knote *kn, struct kevent *kev, long type);
+ void (*f_touch)(struct knote *kn, struct kevent *kev, unsigned long type);
};
/*
OpenPOWER on IntegriCloud