aboutsummaryrefslogtreecommitdiff
path: root/graphs.c
diff options
context:
space:
mode:
authorHugo Hörnquist <hugo@lysator.liu.se>2019-02-26 10:56:49 +0100
committerHugo Hörnquist <hugo@lysator.liu.se>2019-02-26 10:56:49 +0100
commit985ee1776348b2068fb6470e2a2fd3442c2a0811 (patch)
tree53537a365103edf9213a592a7637ee7cee7fd16a /graphs.c
parentMove load-extension to (vcalendar primitive). (diff)
downloadcalp-985ee1776348b2068fb6470e2a2fd3442c2a0811.tar.gz
calp-985ee1776348b2068fb6470e2a2fd3442c2a0811.tar.xz
Start update of types.
Diffstat (limited to 'graphs.c')
-rw-r--r--graphs.c8
1 files changed, 6 insertions, 2 deletions
diff --git a/graphs.c b/graphs.c
index 2ed7009e..8051b226 100644
--- a/graphs.c
+++ b/graphs.c
@@ -98,7 +98,7 @@ int trie_to_dot_helper ( TRIE_NODE(T)* root, FILE* f ) {
} else {
fprintf(f, "\"%p\"[label = \"%c [%i]\" style=filled fillcolor=green];\n",
(void*) root, root->c,
- SIZE(LLIST(content_set))(&L(root)->val)
+ SIZE(LLIST(content_set))(L(root))
);
}
TRIE_NODE(T)* child = root->child;
@@ -107,7 +107,7 @@ int trie_to_dot_helper ( TRIE_NODE(T)* root, FILE* f ) {
#if 1 /* Toggle values */
if (L(root) != NULL) {
- FOR(LLIST, content_set, v, &L(root)->val) {
+ FOR(LLIST, content_set, v, L(root)) {
char buf[0x100];
FMT(strbuf)(&v->key, buf);
fprintf(f, "\"%p\" [label=\"%s\" shape=rectangle color=darkgreen];\n",
@@ -115,6 +115,9 @@ int trie_to_dot_helper ( TRIE_NODE(T)* root, FILE* f ) {
fprintf(f, "\"%p\" -> \"%p\";\n", root, v);
/* Parameters */
+ // TODO reenable this, but currently v->val is a TRIE,
+ // which I currently can't itterate over
+#if 0
FOR(LLIST, param_set, p, &v->val) {
strbuf* param_key = &p->key;
@@ -128,6 +131,7 @@ int trie_to_dot_helper ( TRIE_NODE(T)* root, FILE* f ) {
fprintf(f, "\"%p\" -> \"%p\";", param_key, str);
}
}
+#endif
}
}
#endif