X-Git-Url: http://git.tuebingen.mpg.de/?p=paraslash.git;a=blobdiff_plain;f=ao_write.c;h=b1c344cc4586c9044e68f2f386ee54aa3024e01b;hp=165caa0cd411a65aeb849cc5f3e105d37d9e63b6;hb=35e284e06a5c8e20d02b61fdcb4bcc20b237c1e4;hpb=8fa50e3e39b4f65dea2a694dc064038a41036642 diff --git a/ao_write.c b/ao_write.c index 165caa0c..b1c344cc 100644 --- a/ao_write.c +++ b/ao_write.c @@ -342,13 +342,13 @@ __malloc static void *aow_parse_config_or_die(int argc, char **argv) struct ao_write_args_info *conf = para_calloc(sizeof(*conf)); /* exits on errors */ - ao_cmdline_parser(argc, argv, conf); + ao_write_cmdline_parser(argc, argv, conf); return conf; } static void aow_free_config(void *conf) { - ao_cmdline_parser_free(conf); + ao_write_cmdline_parser_free(conf); } /** @@ -365,7 +365,7 @@ void ao_write_init(struct writer *w) ao_info **driver_list; char **dh; /* detailed help */ - ao_cmdline_parser_init(&dummy); + ao_write_cmdline_parser_init(&dummy); w->close = aow_close; w->pre_select = aow_pre_select; w->post_select = aow_post_select; @@ -411,7 +411,7 @@ void ao_write_init(struct writer *w) } dh[num_lines] = NULL; w->help.detailed_help = (const char **)dh; - ao_cmdline_parser_free(&dummy); + ao_write_cmdline_parser_free(&dummy); ao_shutdown(); }