diff options
author | Nick Mathewson <nickm@torproject.org> | 2019-04-11 18:56:02 -0400 |
---|---|---|
committer | Nick Mathewson <nickm@torproject.org> | 2019-04-11 18:56:02 -0400 |
commit | 48a574604bef9a4fe77d9bb43dfbfc50328e13e0 (patch) | |
tree | a44182e42fdbee4db311be69071dbc133047dfa5 | |
parent | 66b07e7ec13feb57d696b920493590d232e62763 (diff) | |
download | tor-48a574604bef9a4fe77d9bb43dfbfc50328e13e0.tar.gz tor-48a574604bef9a4fe77d9bb43dfbfc50328e13e0.zip |
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.
-rw-r--r-- | src/lib/math/prob_distr.h | 2 |
1 files changed, 1 insertions, 1 deletions
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) \ |