MFC: r205095

Fix a style(9) nit.
This commit is contained in:
Jung-uk Kim 2010-04-05 17:37:35 +00:00
parent 7493cc345a
commit 29f7dafb4c

View file

@ -1577,8 +1577,7 @@ filt_bpfread(struct knote *kn, long hint)
kn->kn_data = d->bd_slen;
if (d->bd_hbuf)
kn->kn_data += d->bd_hlen;
}
else if (d->bd_rtout > 0 && d->bd_state == BPF_IDLE) {
} else if (d->bd_rtout > 0 && d->bd_state == BPF_IDLE) {
callout_reset(&d->bd_callout, d->bd_rtout,
bpf_timed_out, d);
d->bd_state = BPF_WAITING;