From d5088cc1130ca71ad0d4fcd03f68a6be5fa278da Mon Sep 17 00:00:00 2001 From: Matthew Fernandez Date: Sun, 11 Dec 2022 11:32:21 -0800 Subject: [PATCH] common parse_stlye: use a more appropriate type for counting styles --- lib/common/emit.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/lib/common/emit.c b/lib/common/emit.c index 351f50eae..cc6a3a41e 100644 --- a/lib/common/emit.c +++ b/lib/common/emit.c @@ -3810,7 +3810,7 @@ char **parse_style(char *s) { static char *parse[FUNLIMIT]; static bool is_first = true; - int fun = 0; + size_t fun = 0; bool in_parens = false; char *p; -- 2.50.1