From 5e7c300b425c9771942255c9c4f8ad8eebc7b6e3 Mon Sep 17 00:00:00 2001 From: Leah Neukirchen Date: Sun, 7 Jan 2018 21:13:59 +0100 Subject: blaze822: blaze822_loop: use long as return type --- mthread.c | 5 +++-- 1 file changed, 3 insertions(+), 2 deletions(-) (limited to 'mthread.c') diff --git a/mthread.c b/mthread.c index 503b359..323111d 100644 --- a/mthread.c +++ b/mthread.c @@ -396,7 +396,8 @@ print_tree(struct container *c, int depth) int main(int argc, char *argv[]) { - int c, i; + int c; + long i; optional = 1; @@ -422,7 +423,7 @@ main(int argc, char *argv[]) sort_tree(top, -1); print_tree(top, -1); - fprintf(stderr, "%d mails threaded\n", i); + fprintf(stderr, "%ld mails threaded\n", i); return 0; } -- cgit 1.4.1