From 41a9a6b40d45939cd98e72c76a8c16dabcd84318 Mon Sep 17 00:00:00 2001 From: Leah Neukirchen Date: Sat, 16 May 2020 21:20:41 +0200 Subject: mthread: remove count output Closes #174. --- mthread.c | 7 ++----- 1 file changed, 2 insertions(+), 5 deletions(-) diff --git a/mthread.c b/mthread.c index 023029d..8a7172a 100644 --- a/mthread.c +++ b/mthread.c @@ -416,7 +416,6 @@ int main(int argc, char *argv[]) { int c; - long i; optional = 1; @@ -434,9 +433,9 @@ main(int argc, char *argv[]) optional = 0; if (argc == optind && isatty(0)) - i = blaze822_loop1(":", thread); + blaze822_loop1(":", thread); else - i = blaze822_loop(argc-optind, argv+optind, thread); + blaze822_loop(argc-optind, argv+optind, thread); // the tree of all toplevel threads has depth -1, // so toplevel threads have depth 0. @@ -447,7 +446,5 @@ main(int argc, char *argv[]) sort_tree(top, -1); print_tree(top, -1); - fprintf(stderr, "%ld mails threaded\n", i); - return 0; } -- cgit 1.4.1