From: Matthew Fernandez Date: Sun, 11 Dec 2022 19:32:21 +0000 (-0800) Subject: common parse_stlye: use a more appropriate type for counting styles X-Git-Url: https://granicus.if.org/sourcecode?a=commitdiff_plain;h=d5088cc1130ca71ad0d4fcd03f68a6be5fa278da;p=graphviz common parse_stlye: use a more appropriate type for counting styles --- 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;