summaryrefslogtreecommitdiff
path: root/boost/math/distributions/fisher_f.hpp
diff options
context:
space:
mode:
Diffstat (limited to 'boost/math/distributions/fisher_f.hpp')
-rw-r--r--boost/math/distributions/fisher_f.hpp4
1 files changed, 2 insertions, 2 deletions
diff --git a/boost/math/distributions/fisher_f.hpp b/boost/math/distributions/fisher_f.hpp
index 9e259bcc96..798db2fa75 100644
--- a/boost/math/distributions/fisher_f.hpp
+++ b/boost/math/distributions/fisher_f.hpp
@@ -78,10 +78,10 @@ RealType pdf(const fisher_f_distribution<RealType, Policy>& dist, const RealType
// Error check:
RealType error_result = 0;
static const char* function = "boost::math::pdf(fisher_f_distribution<%1%> const&, %1%)";
- if(false == detail::check_df(
+ if(false == (detail::check_df(
function, df1, &error_result, Policy())
&& detail::check_df(
- function, df2, &error_result, Policy()))
+ function, df2, &error_result, Policy())))
return error_result;
if((x < 0) || !(boost::math::isfinite)(x))