From 659facadee3b7536c30cb2ecd9a7a39088f70418 Mon Sep 17 00:00:00 2001
From: "Sven M. Hallberg" <pesco@khjk.org>
Date: Thu, 6 Feb 2020 14:34:08 +0100
Subject: [PATCH] add parens around a macro argument

---
 pdf.c | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/pdf.c b/pdf.c
index 5795ee8..3e5e630 100644
--- a/pdf.c
+++ b/pdf.c
@@ -14,7 +14,7 @@
 #define IGN(P)		h_ignore(P)
 #define LIT(S)		h_ignore(h_literal(S))
 #define IN(STR)		h_in((const uint8_t *)(STR), sizeof(STR) - 1)
-#define NOT_IN(STR)	h_not_in((const uint8_t *)(STR), sizeof STR - 1)
+#define NOT_IN(STR)	h_not_in((const uint8_t *)(STR), sizeof(STR) - 1)
 
 
 /*
-- 
GitLab