]> granicus.if.org Git - graphviz/commitdiff
remove useless snprintf
authorMatthew Fernandez <matthew.fernandez@gmail.com>
Sat, 24 Apr 2021 04:14:54 +0000 (21:14 -0700)
committerMatthew Fernandez <matthew.fernandez@gmail.com>
Fri, 14 May 2021 00:03:36 +0000 (17:03 -0700)
Unclear what the purpose of this was when the content of buf is overwritten
later before being read.

lib/sparse/DotIO.c

index 2c1995f4b64b73f53e0bb1f41c15010e1c22affe..2d6dc86e1c84cfed21ee1b270d719f77714fff5e 100644 (file)
@@ -437,7 +437,6 @@ makeDotGraph (SparseMatrix A, char *name, int dim, real *x, int with_color, int
   } else {
     g = agopen ("G", Agdirected, 0);
   }
-  snprintf(buf, sizeof(buf), "%f", 1.0);
 
   label_string = strcpy(label_string, name);
   label_string = strcat(label_string, ". ");