aboutsummaryrefslogtreecommitdiff
path: root/graphs.c
diff options
context:
space:
mode:
Diffstat (limited to 'graphs.c')
-rw-r--r--graphs.c2
1 files changed, 2 insertions, 0 deletions
diff --git a/graphs.c b/graphs.c
index 3550ddf5..ab10286b 100644
--- a/graphs.c
+++ b/graphs.c
@@ -104,6 +104,7 @@ int trie_to_dot_helper ( TRIE_NODE(T)* root, FILE* f ) {
TRIE_NODE(T)* child = root->child;
// ----------------------------------------
+#if 0 /* Toggle values */
if (root->value != NULL) {
FOR(LLIST(content_set), link, &L(root)->val) {
@@ -129,6 +130,7 @@ int trie_to_dot_helper ( TRIE_NODE(T)* root, FILE* f ) {
}
}
}
+#endif
// ----------------------------------------