From be43b0ba35190e69f0faf2703c000cf3f3722705 Mon Sep 17 00:00:00 2001 From: krangelov Date: Wed, 22 Sep 2021 11:03:16 +0200 Subject: [PATCH] fix variable type --- src/runtime/c/pgf/expr.cxx | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/runtime/c/pgf/expr.cxx b/src/runtime/c/pgf/expr.cxx index 0853ec90a..3b7cf56bb 100644 --- a/src/runtime/c/pgf/expr.cxx +++ b/src/runtime/c/pgf/expr.cxx @@ -815,7 +815,7 @@ PgfType PgfExprParser::parse_type() PgfText *cat = NULL; size_t n_args = 0; - PgfType *args = NULL; + PgfExpr *args = NULL; for (;;) { if (token_tag == PGF_TOKEN_LPAR) {