aboutsummaryrefslogtreecommitdiff
path: root/nodelink.c
diff options
context:
space:
mode:
Diffstat (limited to 'nodelink.c')
-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);
}