From c0a0859566dedd0f73b20285ea1d38aa15728c6b Mon Sep 17 00:00:00 2001 From: "kr.angelov" Date: Thu, 27 Jun 2013 11:00:26 +0000 Subject: C runtime: fix the debug modes in the parser and in the reasoner after the changes in the printer --- src/runtime/c/pgf/reasoner.c | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) (limited to 'src/runtime/c/pgf/reasoner.c') diff --git a/src/runtime/c/pgf/reasoner.c b/src/runtime/c/pgf/reasoner.c index 179933e91..73f9a8b69 100644 --- a/src/runtime/c/pgf/reasoner.c +++ b/src/runtime/c/pgf/reasoner.c @@ -103,7 +103,7 @@ pgf_print_parent_state(PgfExprState* st, pgf_print_parent_state(parent, wtr, err, stack); gu_puts(" (", wtr, err); - pgf_print_expr(st->expr, 0, wtr, err); + pgf_print_expr(st->expr, NULL, 0, wtr, err); } static void @@ -125,7 +125,7 @@ pgf_print_expr_state(PgfExprState* st, gu_puts(" (", wtr, err); else gu_puts(" ", wtr, err); - pgf_print_expr(st->expr, 0, wtr, err); + pgf_print_expr(st->expr, NULL, 0, wtr, err); size_t n_counts = gu_buf_length(stack); for (size_t i = 0; i < n_counts; i++) { -- cgit v1.2.3