diff options
author | Holden Rohrer <hr@hrhr.dev> | 2020-05-27 21:44:46 -0400 |
---|---|---|
committer | Holden Rohrer <hr@hrhr.dev> | 2020-05-27 21:44:46 -0400 |
commit | 2fc327cf38c3e207da78a01153ff52555a38a993 (patch) | |
tree | 1968f4544423873cb010e15d4b896897385130ff | |
parent | 4949aeea4d490736c79703470930990560c344cf (diff) |
removed subnodes tag
-rw-r--r-- | nodelink.c | 1 |
1 files changed, 0 insertions, 1 deletions
@@ -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); } |