]> granicus.if.org Git - graphviz/commitdiff
makePolyline: remove now-unused 'p0' and 'q0' locals
authorMatthew Fernandez <matthew.fernandez@gmail.com>
Sat, 12 Mar 2022 04:21:37 +0000 (20:21 -0800)
committerMatthew Fernandez <matthew.fernandez@gmail.com>
Sun, 13 Mar 2022 18:32:34 +0000 (11:32 -0700)
lib/neatogen/neatosplines.c

index d3b02373b944b300728271753754772e44cf7213..5e5a4223cd431f6f81536e3258003bc259c69778 100644 (file)
@@ -473,10 +473,7 @@ getPath(edge_t * e, vconfig_t * vconfig, int chkPts, Ppoly_t ** obs,
  */
 static void makePolyline(edge_t * e) {
     Ppolyline_t spl, line = ED_path(e);
-    Ppoint_t p0, q0;
 
-    p0 = line.ps[0];
-    q0 = line.ps[line.pn - 1];
     make_polyline (line, &spl);
     if (Verbose > 1)
        fprintf(stderr, "polyline %s %s\n", agnameof(agtail(e)), agnameof(aghead(e)));