]> granicus.if.org Git - graphviz/commitdiff
dotgen make_flat_adj_edges: remove unused 'P' parameter
authorMatthew Fernandez <matthew.fernandez@gmail.com>
Sun, 17 Jul 2022 22:44:42 +0000 (15:44 -0700)
committerMatthew Fernandez <matthew.fernandez@gmail.com>
Sat, 23 Jul 2022 00:14:28 +0000 (17:14 -0700)
lib/dotgen/dotsplines.c

index 3090646b9bbf16d6e08ccda8be46dd1e72cd9aaf..eb5e089e83c5dde7d4cda9c09d82428d84764060 100644 (file)
@@ -1236,7 +1236,7 @@ makeSimpleFlat (node_t* tn, node_t* hn, edge_t** edges, int ind, int cnt, int et
  * more straightforward and laborious fashion. 
  */
 static void
-make_flat_adj_edges(graph_t* g, path* P, edge_t** edges, int ind, int cnt, edge_t* e0,
+make_flat_adj_edges(graph_t* g, edge_t** edges, int ind, int cnt, edge_t* e0,
                     int et)
 {
     node_t* n;
@@ -1614,7 +1614,7 @@ make_flat_edge(graph_t* g, spline_info_t* sp, path * P, edge_t ** edges, int ind
      * so check them all.
      */
     if (isAdjacent) {
-       make_flat_adj_edges (g, P, edges, ind, cnt, e, et);
+       make_flat_adj_edges(g, edges, ind, cnt, e, et);
        return;
     }
     if (ED_label(e)) {  /* edges with labels aren't multi-edges */