about summary refs log tree commit diff
diff options
context:
space:
mode:
-rw-r--r--thread.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/thread.c b/thread.c
index e4766d0..829fe02 100644
--- a/thread.c
+++ b/thread.c
@@ -266,11 +266,11 @@ main(int argc, char *argv[])
 {
 	int i = blaze822_loop(argc-1, argv+1, thread);
 
-	printf("%d mails scanned\n", i);
-	
 	find_roots();
 
 	print_tree(top, -1);
 
+	fprintf(stderr, "%d mails threaded\n", i);
+
 	return 0;
 }