From: Matthew Fernandez Date: Thu, 20 May 2021 03:48:08 +0000 (-0700) Subject: remove initialization of int with a double X-Git-Tag: 2.47.3~33^2 X-Git-Url: https://granicus.if.org/sourcecode?a=commitdiff_plain;h=e77252699b61ff603a3879b81193bb05a42b4981;p=graphviz remove initialization of int with a double It is unclear what this was attempting to achieve. --- diff --git a/cmd/gvmap/country_graph_coloring.c b/cmd/gvmap/country_graph_coloring.c index bb3f1e69c..30e257758 100644 --- a/cmd/gvmap/country_graph_coloring.c +++ b/cmd/gvmap/country_graph_coloring.c @@ -271,7 +271,7 @@ static void country_graph_coloring_internal(int seed, SparseMatrix A, int **p, r int n = A->m, i, j, jj; SparseMatrix L, A2; int *ia = A->ia, *ja = A->ja; - int a = -1.; + int a = -1; real nrow; real *v = NULL; real norm1[3];