The following reply was made to PR kern/55663; it has been noted by GNATS.
From: Martin Husemann <martin%duskware.de@localhost>
To: gnats-bugs%netbsd.org@localhost
Cc:
Subject: Re: kern/55663: Support for EVFILT_USER in kqueue(2)
Date: Wed, 16 Sep 2020 21:20:59 +0200
Style nit:
@@ -1092,6 +1092,7 @@ static const struct filterops pipe_rfiltops = {
.f_attach = NULL,
.f_detach = filt_pipedetach,
.f_event = filt_piperead,
+ .f_touch = NULL,
};
I would suggest to not initialize NULL in such C99 struct initializers
and convert all non-C99 initializers to C99 style instead. That should reduce
the diff dramatically and leave only the important parts.
Martin