[tor-commits] [tor/master] LLONG_MIN => INT64_MIN.
nickm at torproject.org
nickm at torproject.org
Fri Dec 19 19:12:41 UTC 2014
commit 3d85df956905453413918866ffa4dc07b86e7f1b
Author: Nick Mathewson <nickm at torproject.org>
Date: Fri Dec 19 14:12:35 2014 -0500
LLONG_MIN => INT64_MIN.
---
src/test/test_util.c | 2 +-
1 file changed, 1 insertion(+), 1 deletion(-)
diff --git a/src/test/test_util.c b/src/test/test_util.c
index d9f2f4f..e9815b1 100644
--- a/src/test/test_util.c
+++ b/src/test/test_util.c
@@ -4663,7 +4663,7 @@ test_util_laplace(void *arg)
* array([ -inf, -80.47189562, -34.65735903, 0. ,
* 34.65735903, 80.47189562, 195.60115027])
*/
- tt_assert(LLONG_MIN + 20 ==
+ tt_assert(INT64_MIN + 20 ==
add_laplace_noise(20, 0.0, delta_f, epsilon));
tt_assert(-60 == add_laplace_noise(20, 0.1, delta_f, epsilon));
tt_assert(-14 == add_laplace_noise(20, 0.25, delta_f, epsilon));
More information about the tor-commits
mailing list