aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorHolden Rohrer <hr@hrhr.dev>2020-05-27 21:44:46 -0400
committerHolden Rohrer <hr@hrhr.dev>2020-05-27 21:44:46 -0400
commit2fc327cf38c3e207da78a01153ff52555a38a993 (patch)
tree1968f4544423873cb010e15d4b896897385130ff
parent4949aeea4d490736c79703470930990560c344cf (diff)
removed subnodes tag
-rw-r--r--nodelink.c1
1 files changed, 0 insertions, 1 deletions
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);
}