commit 48a574604bef9a4fe77d9bb43dfbfc50328e13e0
parent 66b07e7ec13feb57d696b920493590d232e62763
Author: Nick Mathewson <nickm@torproject.org>
Date: Thu, 11 Apr 2019 18:56:02 -0400
Remove an extraneous _ from __COVERITY__
We had a typo in this check, so that coverity wasn't taking the
right path.
Bug not in any released Tor.
Diffstat:
1 file changed, 1 insertion(+), 1 deletion(-)
diff --git a/src/lib/math/prob_distr.h b/src/lib/math/prob_distr.h
@@ -53,7 +53,7 @@ struct dist {
* We define this conditionally to suppress false positives from
* Coverity, which gets confused by the sizeof business.
*/
-#ifdef __COVERITY___
+#ifdef __COVERITY__
#define TYPE_CHECK_OBJ(OPS, OBJ, TYPE) 0
#else
#define TYPE_CHECK_OBJ(OPS, OBJ, TYPE) \