about summary refs log tree commit diff
path: root/thread.c
diff options
context:
space:
mode:
Diffstat (limited to 'thread.c')
-rw-r--r--thread.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/thread.c b/thread.c
index 72680b5..b648c32 100644
--- a/thread.c
+++ b/thread.c
@@ -249,7 +249,7 @@ prune_tree(struct container *c, int depth)
 	do {
 		if (c->child)
 			prune_tree(c->child, depth+1);
-		if (!c->file && c->child && !c->child->next) {
+		if (depth >= 0 && !c->file && c->child && !c->child->next) {
 			// turn into child if we don't exist and only have a child
 			c->mid = c->child->mid;
 			c->file = c->child->file;