From 2fc327cf38c3e207da78a01153ff52555a38a993 Mon Sep 17 00:00:00 2001
From: Holden Rohrer
Date: Wed, 27 May 2020 21:44:46 -0400
Subject: removed subnodes tag
---
nodelink.c | 1 -
1 file changed, 1 deletion(-)
diff --git a/nodelink.c b/nodelink.c
index 9464978..6e3019b 100644
--- a/nodelink.c
+++ b/nodelink.c
@@ -30,7 +30,6 @@ static void printeach(strbstnode* loc, char reprint) {
if (!reprint) printf(" "); // indent on subnode
printlink(loc->ind, loc->data); // prints it
if (reprint) { // and their subnodes if iterating over root tree
- printf("subnodes:\n");
// prints the link's target's link tree
printeach( ( (link*)loc->data)->to->links->head, 0);
}
--
cgit