From 3c8e96c3cd73cac047bdad66193ae3d348645b20 Mon Sep 17 00:00:00 2001 From: krangelov Date: Tue, 31 Aug 2021 19:39:06 +0200 Subject: [PATCH] fix lint in the C version of PgfUnmarshaller --- src/runtime/c/pgf/pgf.h | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/runtime/c/pgf/pgf.h b/src/runtime/c/pgf/pgf.h index 07b7f0cb8..1810021e3 100644 --- a/src/runtime/c/pgf/pgf.h +++ b/src/runtime/c/pgf/pgf.h @@ -183,7 +183,7 @@ struct PgfUnmarshallerVtbl { PgfExpr (*evar)(PgfUnmarshaller *this, int index); PgfExpr (*etyped)(PgfUnmarshaller *this, PgfExpr expr, PgfType typ); PgfExpr (*eimplarg)(PgfUnmarshaller *this, PgfExpr expr); - PgfLiteral (*lint)(PgfUnmarshaller *this, int v); + PgfLiteral (*lint)(PgfUnmarshaller *this, size_t size, uintmax_t *v); PgfLiteral (*lflt)(PgfUnmarshaller *this, double v); PgfLiteral (*lstr)(PgfUnmarshaller *this, PgfText *v); PgfType (*dtyp)(PgfUnmarshaller *this,