]> granicus.if.org Git - graphviz/commitdiff
remove unused struct name
authorMatthew Fernandez <matthew.fernandez@gmail.com>
Wed, 28 Apr 2021 04:13:51 +0000 (21:13 -0700)
committerMatthew Fernandez <matthew.fernandez@gmail.com>
Wed, 5 May 2021 00:54:32 +0000 (17:54 -0700)
cmd/tools/dijkstra.c

index 0181475d90162bd58c27ed59cd19119f90fbeeb5..8efd35553315d8e95101a09d7f7fefa88c074a7c 100644 (file)
@@ -28,7 +28,7 @@ static bool doPath;           /* if true, record shortest paths */
 static bool doDirected;        /* if true, use directed paths */
 static Agsym_t *len_sym;
 
-typedef struct nodedata_s {
+typedef struct {
     Agrec_t hdr;
     double dist;               /* always positive for scanned nodes */
     Agnode_t* prev;