X-Git-Url: http://git.tuebingen.mpg.de/?p=paraslash.git;a=blobdiff_plain;f=osx_write.c;h=8dcfb4cd1fcc32082abeae34bdff3a23214a2f20;hp=69a781cc1b385b3e92009b6291eed4835ee895b9;hb=901f6642a51445accaf88ab80f6bc80757f74149;hpb=8fa50e3e39b4f65dea2a694dc064038a41036642 diff --git a/osx_write.c b/osx_write.c index 69a781cc..8dcfb4cd 100644 --- a/osx_write.c +++ b/osx_write.c @@ -222,13 +222,13 @@ __malloc static void *osx_write_parse_config_or_die(int argc, char **argv) struct osx_write_args_info *conf = para_calloc(sizeof(*conf)); /* exits on errors */ - osx_cmdline_parser(argc, argv, conf); + osx_write_cmdline_parser(argc, argv, conf); return conf; } static void osx_free_config(void *conf) { - osx_cmdline_parser_free(conf); + osx_write_cmdline_parser_free(conf); } static void osx_write_close(struct writer_node *wn) @@ -326,7 +326,7 @@ void osx_write_init(struct writer *w) { struct osx_write_args_info dummy; - osx_cmdline_parser_init(&dummy); + osx_write_cmdline_parser_init(&dummy); w->close = osx_write_close; w->pre_select = osx_write_pre_select; w->post_select = osx_write_post_select; @@ -336,5 +336,5 @@ void osx_write_init(struct writer *w) .short_help = osx_write_args_info_help, .detailed_help = osx_write_args_info_detailed_help }; - osx_cmdline_parser_free(&dummy); + osx_write_cmdline_parser_free(&dummy); }