]> granicus.if.org Git - graphviz/commitdiff
gvmap get_polygon_solids: remove unnecessary casts
authorMatthew Fernandez <matthew.fernandez@gmail.com>
Thu, 29 Dec 2022 19:10:18 +0000 (11:10 -0800)
committerMatthew Fernandez <matthew.fernandez@gmail.com>
Fri, 30 Dec 2022 06:46:14 +0000 (22:46 -0800)
cmd/gvmap/make_map.c

index e92e3e375cfaa473e1a8a5c21ae9c9f340437bfe..ac0d1d02e42a7c9cd7de8510236ef1d58ed55614 100644 (file)
@@ -702,7 +702,7 @@ static void get_polygon_solids(int nt, SparseMatrix E, int ncomps, int *comps_pt
                     numbered as e1 and e2. Likewise from v to u there are also two edges e1 and e2.
                  */
 
-  int n = E->m, *ie = E->ia, *je = E->ja, *e = (int*) E->a, ne, i, j, t1, t2, jj, ii;
+  int n = E->m, *ie = E->ia, *je = E->ja, *e = E->a, ne, i, j, t1, t2, jj, ii;
   int *cycle, cycle_head = 0;/* a list of edges that form a cycle that describe the polygon. cycle[e][0] gives the prev edge in the cycle from e,
               cycle[e][1] gives the next edge
             */
@@ -763,7 +763,7 @@ static void get_polygon_solids(int nt, SparseMatrix E, int ncomps, int *comps_pt
 
   ie = half_edges->ia;
   je = half_edges->ja;
-  e = (int*) half_edges->a;
+  e = half_edges->a;
   elist = gv_calloc(nt * 3, sizeof(int));
   for (i = 0; i < nt; i++) elist[i*edim + 2] = 0;