Fix a style(9) nit.

This commit is contained in:
jkim 2010-03-12 19:42:42 +00:00
parent 965730af4f
commit 5e802872af

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;