summaryrefslogtreecommitdiff
path: root/src/lib/tls/tortls.c
diff options
context:
space:
mode:
authorNick Mathewson <nickm@torproject.org>2018-07-03 10:43:43 -0400
committerNick Mathewson <nickm@torproject.org>2018-07-03 10:45:43 -0400
commitd5a3bb960d41873ccfde0bbdb4adfb762528069e (patch)
tree45e5a10184c90df512d54f49ac4b2101ed3a258c /src/lib/tls/tortls.c
parent9568c0ce3d3885a41ca44ac030b04d089ac56a40 (diff)
downloadtor-d5a3bb960d41873ccfde0bbdb4adfb762528069e.tar.gz
tor-d5a3bb960d41873ccfde0bbdb4adfb762528069e.zip
Retire U64_TO_DBL and DBL_TO_U64
These were necessary long ago to work around a bug in VC6.
Diffstat (limited to 'src/lib/tls/tortls.c')
-rw-r--r--src/lib/tls/tortls.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/src/lib/tls/tortls.c b/src/lib/tls/tortls.c
index 3eee41bd16..1cd22a7eba 100644
--- a/src/lib/tls/tortls.c
+++ b/src/lib/tls/tortls.c
@@ -2442,8 +2442,8 @@ tls_get_write_overhead_ratio,(void))
if (total_bytes_written_over_tls == 0)
return 1.0;
- return U64_TO_DBL(total_bytes_written_by_tls) /
- U64_TO_DBL(total_bytes_written_over_tls);
+ return ((double)total_bytes_written_by_tls) /
+ ((double)total_bytes_written_over_tls);
}
/** Implement check_no_tls_errors: If there are any pending OpenSSL