summaryrefslogtreecommitdiff
path: root/tools/source/generic/bigint.cxx
diff options
context:
space:
mode:
Diffstat (limited to 'tools/source/generic/bigint.cxx')
-rw-r--r--tools/source/generic/bigint.cxx6
1 files changed, 3 insertions, 3 deletions
diff --git a/tools/source/generic/bigint.cxx b/tools/source/generic/bigint.cxx
index f57a185d5e04..ae99ab7ed886 100644
--- a/tools/source/generic/bigint.cxx
+++ b/tools/source/generic/bigint.cxx
@@ -871,7 +871,7 @@ BigInt& BigInt::operator/=( const BigInt& rVal )
{
if ( rVal.nVal == 0 )
{
- DBG_ERROR( "BigInt::operator/ --> divide by zero" );
+ OSL_FAIL( "BigInt::operator/ --> divide by zero" );
return *this;
}
@@ -932,7 +932,7 @@ void BigInt::DivMod( const BigInt& rVal, BigInt& rMod )
{
if ( rVal.nVal == 0 )
{
- DBG_ERROR( "BigInt::operator/ --> divide by zero" );
+ OSL_FAIL( "BigInt::operator/ --> divide by zero" );
return;
}
@@ -1001,7 +1001,7 @@ BigInt& BigInt::operator%=( const BigInt& rVal )
{
if ( rVal.nVal == 0 )
{
- DBG_ERROR( "BigInt::operator/ --> divide by zero" );
+ OSL_FAIL( "BigInt::operator/ --> divide by zero" );
return *this;
}