From f827b62a2bdb0ec718ea6d3077e4b14c4c6a0f86 Mon Sep 17 00:00:00 2001 From: Sven Verdoolaege Date: Wed, 9 Nov 2011 10:33:14 +0100 Subject: [PATCH] iscc: use isl_ctx_parse_options Signed-off-by: Sven Verdoolaege --- iscc.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/iscc.c b/iscc.c index 2ae4b82..59a45b5 100644 --- a/iscc.c +++ b/iscc.c @@ -2546,9 +2546,9 @@ int main(int argc, char **argv) options = iscc_options_new_with_defaults(); assert(options); - argc = iscc_options_parse(options, argc, argv, ISL_ARG_ALL); ctx = isl_ctx_alloc_with_options(&iscc_options_args, options); + argc = isl_ctx_parse_options(ctx, argc, argv, ISL_ARG_ALL); s = isl_stream_new_file(ctx, stdin); assert(s); table = isl_hash_table_alloc(ctx, 10); -- 2.11.4.GIT