aboutsummaryrefslogtreecommitdiff
path: root/test/benchmark-tcp-write-batch.c
diff options
context:
space:
mode:
authorHiroaki Nakamura <hnakamur@gmail.com>2012-10-16 06:08:14 +0900
committerBen Noordhuis <info@bnoordhuis.nl>2012-10-16 00:07:46 +0200
commit36b1e1a57c59ff835177e26f37742f5fb49cb353 (patch)
tree7e6ce995dc5bff23947294fcf557f542e6b71af8 /test/benchmark-tcp-write-batch.c
parentfd136da04ade528edb666bf00a7bc7c4bd4d120c (diff)
downloadlibuv-36b1e1a57c59ff835177e26f37742f5fb49cb353.tar.gz
libuv-36b1e1a57c59ff835177e26f37742f5fb49cb353.zip
test: change 10e8 to 1e9
It is clearer and used everywhere else.
Diffstat (limited to 'test/benchmark-tcp-write-batch.c')
-rw-r--r--test/benchmark-tcp-write-batch.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/test/benchmark-tcp-write-batch.c b/test/benchmark-tcp-write-batch.c
index 0b15f44b..d7b8c99b 100644
--- a/test/benchmark-tcp-write-batch.c
+++ b/test/benchmark-tcp-write-batch.c
@@ -134,7 +134,7 @@ BENCHMARK_IMPL(tcp_write_batch) {
printf("%ld write requests in %.2fs.\n",
(long)NUM_WRITE_REQS,
- (stop - start) / 10e8);
+ (stop - start) / 1e9);
return 0;
}