diff options
| author | kr.angelov <kr.angelov@gmail.com> | 2013-06-27 11:00:26 +0000 |
|---|---|---|
| committer | kr.angelov <kr.angelov@gmail.com> | 2013-06-27 11:00:26 +0000 |
| commit | c0a0859566dedd0f73b20285ea1d38aa15728c6b (patch) | |
| tree | 6558d4fc63e60c9deb432aeab7d392da8a8c3740 /src/runtime/c/pgf/reasoner.c | |
| parent | 478b46be87e8a119d75f23167c1fecb2d5a02f6b (diff) | |
C runtime: fix the debug modes in the parser and in the reasoner after the changes in the printer
Diffstat (limited to 'src/runtime/c/pgf/reasoner.c')
| -rw-r--r-- | src/runtime/c/pgf/reasoner.c | 4 |
1 files changed, 2 insertions, 2 deletions
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++) { |
