From 85ccd39fca61a113e5f389f044328c649daac0c9 Mon Sep 17 00:00:00 2001 From: "Sven M. Hallberg" <pesco@khjk.org> Date: Mon, 3 Feb 2020 19:21:48 +0100 Subject: [PATCH] make aux->input a pointer to uint8_t as intended --- pdf.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/pdf.c b/pdf.c index d953890..69bc056 100644 --- a/pdf.c +++ b/pdf.c @@ -105,7 +105,7 @@ validate_eq_uint(HParseResult *p, void *u) */ struct Env { const char *infile; - const char *input; + const uint8_t *input; size_t sz; const HParsedToken **xrefs; /* all xref sections of the file */ -- GitLab