summaryrefslogtreecommitdiffstats
path: root/sc/source/core/tool/interpr2.cxx
diff options
context:
space:
mode:
Diffstat (limited to 'sc/source/core/tool/interpr2.cxx')
-rw-r--r--sc/source/core/tool/interpr2.cxx2
1 files changed, 1 insertions, 1 deletions
diff --git a/sc/source/core/tool/interpr2.cxx b/sc/source/core/tool/interpr2.cxx
index e453f46a5812..75a1d6b2debe 100644
--- a/sc/source/core/tool/interpr2.cxx
+++ b/sc/source/core/tool/interpr2.cxx
@@ -1884,7 +1884,7 @@ void ScInterpreter::ScPDuration()
if ( fFuture <= 0.0 || fPresent <= 0.0 || fInterest <= 0.0 )
PushIllegalArgument();
else
- PushDouble( ( log( fFuture / fPresent ) / rtl::math::log1p( fInterest ) ) );
+ PushDouble( log( fFuture / fPresent ) / rtl::math::log1p( fInterest ) );
}
}