summaryrefslogtreecommitdiff
path: root/boost/math/distributions/geometric.hpp
diff options
context:
space:
mode:
Diffstat (limited to 'boost/math/distributions/geometric.hpp')
-rw-r--r--boost/math/distributions/geometric.hpp2
1 files changed, 1 insertions, 1 deletions
diff --git a/boost/math/distributions/geometric.hpp b/boost/math/distributions/geometric.hpp
index 88947d6c57..6c9713eadd 100644
--- a/boost/math/distributions/geometric.hpp
+++ b/boost/math/distributions/geometric.hpp
@@ -105,7 +105,7 @@ namespace boost
template <class RealType, class Policy>
inline bool check_dist_and_prob(const char* function, RealType p, RealType prob, RealType* result, const Policy& pol)
{
- if(check_dist(function, p, result, pol) && detail::check_probability(function, prob, result, pol) == false)
+ if((check_dist(function, p, result, pol) && detail::check_probability(function, prob, result, pol)) == false)
{
return false;
}