aboutsummaryrefslogtreecommitdiff
path: root/trie.inc.h
diff options
context:
space:
mode:
Diffstat (limited to 'trie.inc.h')
-rw-r--r--trie.inc.h3
1 files changed, 2 insertions, 1 deletions
diff --git a/trie.inc.h b/trie.inc.h
index c03cee22..3ac9acac 100644
--- a/trie.inc.h
+++ b/trie.inc.h
@@ -137,7 +137,8 @@ FMT_F(TRIE_NODE(TYPE)) {
if (n == NULL) { fmtf("\n"); }
while (n != NULL) {
fmtf("|");
- FOR(int, i, depth) fmtf(" ");
+ // FOR(int, i, depth) fmtf(" ");
+ for (int i = 0; i < depth; i++) fmtf(" ");
fmtf("%c ", n->c == '\0' ? '0' : n->c);
if (n->value != NULL) {
seek += FMT(TYPE)(n->value, buf + seek);