From: Nick Mathewson Date: Tue, 21 Apr 2009 16:17:59 +0000 (+0000) Subject: Format microseconds correctly in bench_httpclient X-Git-Tag: release-2.0.3-alpha~301 X-Git-Url: https://granicus.if.org/sourcecode?a=commitdiff_plain;h=1bb8e010f99fa0bfe64f4440caf6e9ef80013fb4;p=libevent Format microseconds correctly in bench_httpclient svn:r1209 --- diff --git a/test/bench_httpclient.c b/test/bench_httpclient.c index 75375d83..15079ed3 100644 --- a/test/bench_httpclient.c +++ b/test/bench_httpclient.c @@ -191,7 +191,7 @@ main(int argc, char **argv) "Each took about %.02f msec latency\n" "%lld bytes read. %d errors.\n", total_n_handled, - (int)total.tv_sec, total.tv_usec, + (int)total.tv_sec, (int)total.tv_usec, throughput, (double)(usec/1000) / total_n_handled, (long long)total_n_bytes, n_errors);