about summary refs log tree commit diff
path: root/thread.c
diff options
context:
space:
mode:
authorChristian Neukirchen <chneukirchen@gmail.com>2016-07-12 20:10:40 +0200
committerChristian Neukirchen <chneukirchen@gmail.com>2016-07-12 20:10:40 +0200
commita538437df351afcb5ef042cf8496de0ab506b27a (patch)
tree33a5b750ebcc3a4b113903cee4a673cddfc5f80d /thread.c
parent597a035dbf65b44d8a152b22786808182f64b48b (diff)
downloadmblaze-a538437df351afcb5ef042cf8496de0ab506b27a.tar.gz
mblaze-a538437df351afcb5ef042cf8496de0ab506b27a.tar.xz
mblaze-a538437df351afcb5ef042cf8496de0ab506b27a.zip
thread: remove debugging output
Diffstat (limited to 'thread.c')
-rw-r--r--thread.c6
1 files changed, 0 insertions, 6 deletions
diff --git a/thread.c b/thread.c
index 931fafe..95bfb53 100644
--- a/thread.c
+++ b/thread.c
@@ -80,7 +80,6 @@ midcont(char *mid)
 		c->file = 0;
 		c->msg = 0;
 		c->parent = c->child = c->next = 0;
-		printf("ADD %s\n", mid);
 		return *(struct container **)tsearch(c, &mids, midorder);
 	} else {
 		return *result;
@@ -143,8 +142,6 @@ thread(char *file)
 			mid = strndup(m+1, v-m-1);
 			// XXX free?
 
-			printf("ref |%s|\n", mid);
-
 			me = midcont(mid);
 
 			if (me == c)
@@ -172,7 +169,6 @@ thread(char *file)
 		if (!v)
 			goto out;
 		irt = strndup(m+1, v-m-1);
-		printf("irt |%s|\n", irt);
 		
 		if (strcmp(irt, mid) != 0) {
 			parent = midcont(irt);
@@ -230,8 +226,6 @@ find_root(const void *nodep, const VISIT which, const int depth)
 		struct container *c = *(struct container **)nodep;
 
 		if (!c->parent) {
-//			printf("%s\n", c->mid);
-			printf("root %s\n", c->mid);
 			lastc->next = c;
 			c->next = 0;
 			lastc = c;