From 2d2af272a7fd0bd296637b3fc484f9413753330d Mon Sep 17 00:00:00 2001 From: Krasimir Angelov Date: Fri, 27 Jan 2023 10:28:01 +0100 Subject: [PATCH] fix compilation --- src/runtime/python/ffi.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/runtime/python/ffi.c b/src/runtime/python/ffi.c index 2c1a46c4d..473af179f 100644 --- a/src/runtime/python/ffi.c +++ b/src/runtime/python/ffi.c @@ -407,7 +407,7 @@ lstr(PgfUnmarshaller *this, PgfText *v) } static PgfType -dtyp(PgfUnmarshaller *this, int n_hypos, PgfTypeHypo *hypos, PgfText *cat, int n_exprs, PgfExpr *exprs) +dtyp(PgfUnmarshaller *this, size_t n_hypos, PgfTypeHypo *hypos, PgfText *cat, size_t n_exprs, PgfExpr *exprs) { TypeObject *pytype = (TypeObject *)pgf_TypeType.tp_alloc(&pgf_TypeType, 0); if (!pytype)