]> granicus.if.org Git - graphviz/commitdiff
smyrna get_attribute_value: remove shadowing of 'view' global
authorMatthew Fernandez <matthew.fernandez@gmail.com>
Wed, 21 Dec 2022 05:27:05 +0000 (21:27 -0800)
committerMatthew Fernandez <matthew.fernandez@gmail.com>
Sat, 24 Dec 2022 19:42:15 +0000 (11:42 -0800)
cmd/smyrna/viewport.c

index 666c8fab7625b7a139a3ea772bf3366859e3f5e2..920fb103cc8dfbc3b8820313a5c3553d9cc04843 100644 (file)
@@ -76,12 +76,11 @@ void close_graph(ViewInfo *vi) {
     clear_viewport(vi);
 }
 
-char *get_attribute_value(char *attr, ViewInfo * view, Agraph_t * g)
-{
+char *get_attribute_value(char *attr, ViewInfo *vi, Agraph_t *g) {
     char *buf;
     buf = agget(g, attr);
     if (!buf || *buf == '\0')
-       buf = agget(view->systemGraphs.def_attrs, attr);
+       buf = agget(vi->systemGraphs.def_attrs, attr);
     return buf;
 }