]> granicus.if.org Git - graphviz/commitdiff
Remove 1 -Wunused-but-set-variable warning in maze.c
authorMagnus Jacobsson <Magnus.Jacobsson@berotec.se>
Sat, 7 Nov 2020 12:51:07 +0000 (13:51 +0100)
committerMagnus Jacobsson <Magnus.Jacobsson@berotec.se>
Sat, 21 Nov 2020 08:12:29 +0000 (09:12 +0100)
lib/ortho/maze.c

index e343f3f6e87977cf0cba046a8638975a8385f427..450837a986c78c883470cc57e3d28e084ca9a8f3 100644 (file)
@@ -319,7 +319,7 @@ chkSgraph (sgraph* g)
 static sgraph*
 mkMazeGraph (maze* mp, boxf bb)
 {
-    int nsides, i, ncnt, maxdeg;
+    int nsides, i, maxdeg;
     int bound = 4*mp->ncells;
     sgraph* g = createSGraph (bound + 2);
     Dt_t* vdict = dtopen(&vdictDisc,Dtoset);
@@ -332,7 +332,6 @@ mkMazeGraph (maze* mp, boxf bb)
      * a pointer to the cell.
      */
     sides = N_NEW(4*mp->ncells, snode*);
-    ncnt = 0;
     for (i = 0; i < mp->ncells; i++) {
        cell* cp = mp->cells+i;
         snode* np;