X-Git-Url: http://git.tuebingen.mpg.de/?p=paraslash.git;a=blobdiff_plain;f=wav_filter.c;h=ea3236c7f56a0ee1b2719b47a80dc4e4754154ad;hp=c2a9329f15e931af76fa10cdcab9913e627b0a24;hb=bfdd36f2879b8dee1f6d3330bc49fbb5644d3caf;hpb=74c88020bd325865fe26ed25ea8ad0ace0924136 diff --git a/wav_filter.c b/wav_filter.c index c2a9329f..ea3236c7 100644 --- a/wav_filter.c +++ b/wav_filter.c @@ -1,5 +1,5 @@ /* - * Copyright (C) 2005-2013 Andre Noll + * Copyright (C) 2005-2014 Andre Noll * * Licensed under the GPL v2. For licencing details see COPYING. */ @@ -113,7 +113,7 @@ static int wav_post_select(__a_unused struct sched *s, struct task *t) ret = -E_WAV_SUCCESS; err: if (ret == -E_WAV_SUCCESS) - btr_splice_out_node(btrn); + btr_splice_out_node(&fn->btrn); else { btr_remove_node(&fn->btrn); PARA_ERROR_LOG("%s\n", para_strerror(-ret)); @@ -131,5 +131,5 @@ void wav_filter_init(struct filter *f) f->close = wav_close; f->open = wav_open; f->pre_select = wav_pre_select; - f->new_post_select = wav_post_select; + f->post_select = wav_post_select; }