]> granicus.if.org Git - graphviz/commitdiff
remove unused parameter e from addEdgeToNode
authorMatthew Fernandez <matthew.fernandez@gmail.com>
Thu, 8 Apr 2021 04:49:57 +0000 (21:49 -0700)
committerMatthew Fernandez <matthew.fernandez@gmail.com>
Sat, 17 Apr 2021 21:02:40 +0000 (14:02 -0700)
lib/ortho/sgraph.c

index ecf9691f13cdf0caa3f0a20a1008fb8886942433..dac6cdf928ecc99d83463bf7f674ce6098c57e67 100644 (file)
@@ -75,7 +75,7 @@ createSNode (sgraph* g)
 }
 
 static void
-addEdgeToNode (snode* np, sedge* e, int idx)
+addEdgeToNode (snode* np, int idx)
 {
     np->adj_edge_list[np->n_adj] = idx;
     np->n_adj++;
@@ -93,8 +93,8 @@ createSEdge (sgraph* g, snode* v1, snode* v2, double wt)
     e->weight = wt;
     e->cnt = 0;
 
-    addEdgeToNode (v1, e, idx);
-    addEdgeToNode (v2, e, idx);
+    addEdgeToNode (v1, idx);
+    addEdgeToNode (v2, idx);
 
     return e;
 }