]> git.ipfire.org Git - thirdparty/tor.git/commitdiff
LLONG_MIN => INT64_MIN.
authorNick Mathewson <nickm@torproject.org>
Fri, 19 Dec 2014 19:12:35 +0000 (14:12 -0500)
committerNick Mathewson <nickm@torproject.org>
Fri, 19 Dec 2014 19:12:35 +0000 (14:12 -0500)
src/test/test_util.c

index d9f2f4f7442d88adab5237cc907046e1319f15fc..e9815b12e73bf82285b81b79379c4b3636353c55 100644 (file)
@@ -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));