]> granicus.if.org Git - graphviz/commitdiff
DotIO.c: use unsigned types where possible when interacting with ND_id
authorMatthew Fernandez <matthew.fernandez@gmail.com>
Wed, 14 Jul 2021 03:58:32 +0000 (20:58 -0700)
committerMatthew Fernandez <matthew.fernandez@gmail.com>
Tue, 20 Jul 2021 14:19:39 +0000 (07:19 -0700)
Squashes 4 -Wsign-conversion warnings.

lib/sparse/DotIO.c

index 382191496d22d9e0bb2cdd97bd7a43e306c7cbbf..bc06d5a5c68bd49d98b0e2a9c5b61e9209299050 100644 (file)
@@ -54,7 +54,7 @@ void attach_edge_colors(Agraph_t* g, int dim, real *colors){
   Agnode_t* n;
   enum {slen = 1024};
   char buf[slen];
-  int row, col;
+  unsigned row, col;
   int ie = 0;
 
   if (!sym)
@@ -276,7 +276,7 @@ int Import_dot_splines(Agraph_t* g, int *ne, char ***xsplines){
   Agedge_t* e;
   Agsym_t *sym;
   int nedges;
-  int i;
+  unsigned i;
 
   if (!g){
     return 0;
@@ -324,7 +324,7 @@ void Dot_SetClusterColor(Agraph_t* g, float *rgb_r,  float *rgb_g,  float *rgb_b
 
   Agnode_t* n;
   char scluster[20];
-  int i;
+  unsigned i;
   Agsym_t* clust_clr_sym = agattr(g, AGNODE, "clustercolor", NULL); 
 
   if (!clust_clr_sym) clust_clr_sym = agattr(g, AGNODE, "clustercolor", "-1");