From: Nick Mathewson Date: Thu, 11 Apr 2019 22:56:02 +0000 (-0400) Subject: Remove an extraneous _ from __COVERITY__ X-Git-Tag: tor-0.4.1.1-alpha~73^2~1 X-Git-Url: http://git.ipfire.org/gitweb.cgi?a=commitdiff_plain;h=48a574604bef9a4fe77d9bb43dfbfc50328e13e0;p=thirdparty%2Ftor.git 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. --- diff --git a/src/lib/math/prob_distr.h b/src/lib/math/prob_distr.h index 2eb935e4a8..8fccf8d015 100644 --- 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) \