]> git.meshlink.io Git - meshlink/blobdiff - src/edge.c
Fix whitespace.
[meshlink] / src / edge.c
index be1a6f3c8a57e07815b99fe5da1efe8e980da88a..4fc36e40d4aa7b270e8513c9b213f5084cadc6ac 100644 (file)
@@ -29,7 +29,7 @@
 #include "utils.h"
 #include "xalloc.h"
 
-splay_tree_t *edge_weight_tree;        /* Tree with all edges, sorted on weight */
+splay_tree_t *edge_weight_tree;
 
 static int edge_compare(const edge_t *a, const edge_t *b) {
        return strcmp(a->to->name, b->to->name);
@@ -99,7 +99,7 @@ void edge_del(edge_t *e) {
 
 edge_t *lookup_edge(node_t *from, node_t *to) {
        edge_t v;
-       
+
        v.from = from;
        v.to = to;