diff options
author | rwatson <rwatson@FreeBSD.org> | 2009-09-12 20:03:45 +0000 |
---|---|---|
committer | rwatson <rwatson@FreeBSD.org> | 2009-09-12 20:03:45 +0000 |
commit | 53eaed07bcf1ec0f1a38e0b490d95f1ee307055a (patch) | |
tree | a4c213c079a55cd47cd1026ebfbedf0f22cafea1 /sys/kern/tty.c | |
parent | db3ff4e5c03b76a4899555f3db282820ce0c3470 (diff) | |
download | FreeBSD-src-53eaed07bcf1ec0f1a38e0b490d95f1ee307055a.zip FreeBSD-src-53eaed07bcf1ec0f1a38e0b490d95f1ee307055a.tar.gz |
Use C99 initialization for struct filterops.
Obtained from: Mac OS X
Sponsored by: Apple Inc.
MFC after: 3 weeks
Diffstat (limited to 'sys/kern/tty.c')
-rw-r--r-- | sys/kern/tty.c | 14 |
1 files changed, 10 insertions, 4 deletions
diff --git a/sys/kern/tty.c b/sys/kern/tty.c index a14f714..6990b8f 100644 --- a/sys/kern/tty.c +++ b/sys/kern/tty.c @@ -635,10 +635,16 @@ tty_kqops_write_event(struct knote *kn, long hint) } } -static struct filterops tty_kqops_read = - { 1, NULL, tty_kqops_read_detach, tty_kqops_read_event }; -static struct filterops tty_kqops_write = - { 1, NULL, tty_kqops_write_detach, tty_kqops_write_event }; +static struct filterops tty_kqops_read = { + .f_isfd = 1, + .f_detach = tty_kqops_read_detach, + .f_event = tty_kqops_read_event, +}; +static struct filterops tty_kqops_write = { + .f_isfd = 1, + .f_detach = tty_kqops_write_detach, + .f_event = tty_kqops_write_event, +}; static int ttydev_kqfilter(struct cdev *dev, struct knote *kn) |