oggdec: Fix a thinko in post_select().
[paraslash.git] / filter_common.c
index 7af5ace6533aa88a85b5ea9c8295867192164af0..1317192006e44f2a0ce93aeb1b6c616db39fcb68 100644 (file)
@@ -133,9 +133,6 @@ void generic_filter_pre_select(struct sched *s, struct task *t)
        struct filter_node *fn = container_of(t, struct filter_node, task);
 
        t->error = 0;
-       if (btr_node_status(fn->btrn, fn->min_iqs, BTR_NT_INTERNAL) != 0) {
-               s->timeout.tv_sec = 0;
-               s->timeout.tv_usec = 1;
-       }
+       if (btr_node_status(fn->btrn, fn->min_iqs, BTR_NT_INTERNAL) != 0)
+               sched_min_delay(s);
 }
-