Displaying 1 result from an estimated 1 matches for "91f5c990".
2019 Sep 28
0
[PATCH] src/graph.c: print bidirectional edges with a single two-headed arrow
From: Erich Eckner <git at eckner.net>
Signed-off-by: Erich Eckner <git at eckner.net>
---
src/graph.c | 8 +++++++-
1 file changed, 7 insertions(+), 1 deletion(-)
diff --git a/src/graph.c b/src/graph.c
index c63fdf9c..91f5c990 100644
--- a/src/graph.c
+++ b/src/graph.c
@@ -366,7 +366,13 @@ void dump_graph(void) {
/* now dump all edges */
for(node = edge_weight_tree->head; node; node = node->next) {
e = node->data;
- fprintf(file, " \"%s\" -> \"%s\";\n", e->from->nam...