summaryrefslogtreecommitdiff
path: root/src/runtime/python
diff options
context:
space:
mode:
authorkr.angelov <kr.angelov@gmail.com>2014-03-12 15:36:40 +0000
committerkr.angelov <kr.angelov@gmail.com>2014-03-12 15:36:40 +0000
commitae1512c926e364f41bae3beaa11a767295caece3 (patch)
treeba9f6ded1d044e534495c459421b4b6180448142 /src/runtime/python
parentca8dd1e8cc7c24abffac758f9eb1601bb3afb65a (diff)
compute the right word probability
Diffstat (limited to 'src/runtime/python')
-rw-r--r--src/runtime/python/pypgf.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/runtime/python/pypgf.c b/src/runtime/python/pypgf.c
index 63df93217..f8abe6670 100644
--- a/src/runtime/python/pypgf.c
+++ b/src/runtime/python/pypgf.c
@@ -1515,7 +1515,7 @@ Concr_bracketedLinearize(ConcrObject* self, PyObject *args)
state.funcs = &pgf_bracket_lin_funcs;
state.stack = gu_new_buf(PyObject*, tmp_pool);
state.list = list;
- pgf_lzr_linearize(self->concr, ctree, 0, &state.funcs);
+ pgf_lzr_linearize(self->concr, ctree, 0, &state.funcs, tmp_pool);
gu_pool_free(tmp_pool);