]> git.ipfire.org Git - thirdparty/tor.git/commitdiff
Remove an extraneous _ from __COVERITY__
authorNick Mathewson <nickm@torproject.org>
Thu, 11 Apr 2019 22:56:02 +0000 (18:56 -0400)
committerNick Mathewson <nickm@torproject.org>
Thu, 11 Apr 2019 22:56:02 +0000 (18:56 -0400)
We had a typo in this check, so that coverity wasn't taking the
right path.

Bug not in any released Tor.

src/lib/math/prob_distr.h

index 2eb935e4a871d491a63773be809a831e9cf43f6d..8fccf8d015b80543f3f55fb6ff28cae93fae764f 100644 (file)
@@ -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) \