]> git.tuebingen.mpg.de Git - paraslash.git/blobdiff - compress_filter.c
Simplify ggo makefile.
[paraslash.git] / compress_filter.c
index 74ea59f3ada85e6e10bba6f0d015d6bc8dbc3dd1..49d6d66c4f7a6b37d3b5ba4e072f2208f3a90715 100644 (file)
@@ -109,7 +109,7 @@ next_buffer:
 err:
        assert(ret < 0);
        t->error = ret;
-       btr_remove_node(btrn);
+       btr_remove_node(&fn->btrn);
 }
 
 /** TODO: Add sanity checks */
@@ -120,7 +120,7 @@ static int compress_parse_config(int argc, char **argv, void **config)
                = para_calloc(sizeof(*compress_conf));
 
        ret = -E_COMPRESS_SYNTAX;
-       if (compress_cmdline_parser(argc, argv, compress_conf))
+       if (compress_filter_cmdline_parser(argc, argv, compress_conf))
                goto err;
        *config = compress_conf;
        return 1;
@@ -142,7 +142,7 @@ static void compress_open(struct filter_node *fn)
 
 static void compress_free_config(void *conf)
 {
-       compress_cmdline_parser_free(conf);
+       compress_filter_cmdline_parser_free(conf);
 }
 
 /**
@@ -154,7 +154,7 @@ void compress_filter_init(struct filter *f)
 {
        struct compress_filter_args_info dummy;
 
-       compress_cmdline_parser_init(&dummy);
+       compress_filter_cmdline_parser_init(&dummy);
        f->open = compress_open;
        f->close = compress_close;
        f->pre_select = generic_filter_pre_select;