From 4459545e6528c8f072de79b799b9ae9b85d01dfb Mon Sep 17 00:00:00 2001 From: Bobby Bingham Date: Sun, 23 Jul 2017 23:07:17 -0500 Subject: Output regex instead of debugging format --- pattern2regex.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'pattern2regex.c') diff --git a/pattern2regex.c b/pattern2regex.c index 669206a..646b007 100644 --- a/pattern2regex.c +++ b/pattern2regex.c @@ -12,7 +12,7 @@ int main(int argc, char **argv) yyin = stdin; } - if (!yyparse()) dump_atom(ast); + if (!yyparse()) print_regex(ast); fclose(yyin); return 0; -- cgit v1.2.3