Fix a style(9) nit.

This commit is contained in:
Jung-uk Kim 2010-03-12 19:42:42 +00:00
parent a398ca9cea
commit 5d7af3a1cc
Notes: svn2git 2020-12-20 02:59:44 +00:00
svn path=/head/; revision=205095

View File

@ -1580,8 +1580,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;