]> granicus.if.org Git - graphviz/commitdiff
smyrna gvpr_select: remove shadowing of 'attr' global
authorMatthew Fernandez <matthew.fernandez@gmail.com>
Sun, 25 Sep 2022 17:31:32 +0000 (10:31 -0700)
committerMatthew Fernandez <matthew.fernandez@gmail.com>
Sun, 25 Sep 2022 20:25:40 +0000 (13:25 -0700)
cmd/smyrna/gui/frmobjectui.c

index 5968c36764f973bae83caeb0410fe2e9f6068a37..6e6b04fa04a862e6b1a3d9986ef9c4957f3068a2 100644 (file)
@@ -704,8 +704,7 @@ void showAttrsWidget(topview * t)
     filter_attributes("", view->Topview);
 }
 
-static void gvpr_select(char *attr, char *regex_str, int objType)
-{
+static void gvpr_select(char *attrname, char *regex_str, int objType) {
 
     char *bf2;
     int i, argc;
@@ -715,9 +714,9 @@ static void gvpr_select(char *attr, char *regex_str, int objType)
     agxbinit(&sf, 0, NULL);
 
     if (objType == AGNODE)
-       agxbprint(&sf, "N[%s==\"%s\"]{selected = \"1\"}", attr, regex_str);
+       agxbprint(&sf, "N[%s==\"%s\"]{selected = \"1\"}", attrname, regex_str);
     else if (objType == AGEDGE)
-       agxbprint(&sf, "E[%s==\"%s\"]{selected = \"1\"}", attr, regex_str);
+       agxbprint(&sf, "E[%s==\"%s\"]{selected = \"1\"}", attrname, regex_str);
 
     bf2 = agxbdisown(&sf);