From: Matthew Fernandez Date: Mon, 30 Aug 2021 00:37:15 +0000 (-0700) Subject: style_token: remove unnecessary bracketing X-Git-Tag: 2.49.1~46^2~2 X-Git-Url: https://granicus.if.org/sourcecode?a=commitdiff_plain;h=d5b5021400d265949e53a2752014323438e194d8;p=graphviz style_token: remove unnecessary bracketing --- diff --git a/lib/common/emit.c b/lib/common/emit.c index 64f0810c3..f4faca42b 100644 --- a/lib/common/emit.c +++ b/lib/common/emit.c @@ -3773,7 +3773,7 @@ static int style_token(char **s, agxbuf * xb) int token; char c; - while (*p && (isspace(*p) || (*p == ','))) + while (*p && (isspace(*p) || *p == ',')) p++; switch (*p) { case '\0':