diff options
Diffstat (limited to 'sys/dev/null/null.c')
-rw-r--r-- | sys/dev/null/null.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/sys/dev/null/null.c b/sys/dev/null/null.c index c4f138b102c7..b5725de30bef 100644 --- a/sys/dev/null/null.c +++ b/sys/dev/null/null.c @@ -62,13 +62,13 @@ static int zero_ev(struct knote *kn, long hint); static const struct filterops one_fop = { .f_isfd = 1, .f_event = one_ev, - .f_copy = knote_triv_copy, + .f_copy = knote_triv_copy, }; static const struct filterops zero_fop = { .f_isfd = 1, .f_event = zero_ev, - .f_copy = knote_triv_copy, + .f_copy = knote_triv_copy, }; static struct cdevsw full_cdevsw = { |