summaryrefslogtreecommitdiffstats
path: root/connectivity/source/drivers/file/fcode.cxx
diff options
context:
space:
mode:
authorThomas Arnhold <thomas@arnhold.org>2011-02-26 10:31:42 +0100
committerThomas Arnhold <thomas@arnhold.org>2011-02-26 10:39:07 +0100
commitb0339463e0e6764f5c53cebdf2da73ccb16d6052 (patch)
treee964952462360d257f19a8fe4132a8fc1d742042 /connectivity/source/drivers/file/fcode.cxx
parentRemoved macros. (diff)
downloadcore-b0339463e0e6764f5c53cebdf2da73ccb16d6052.tar.gz
core-b0339463e0e6764f5c53cebdf2da73ccb16d6052.zip
Move bogus OSL_ASSERT(msg) to OSL_FAIL(msg)
Diffstat (limited to 'connectivity/source/drivers/file/fcode.cxx')
-rw-r--r--connectivity/source/drivers/file/fcode.cxx4
1 files changed, 2 insertions, 2 deletions
diff --git a/connectivity/source/drivers/file/fcode.cxx b/connectivity/source/drivers/file/fcode.cxx
index 7c30f41b44ff..5bc61b64ccc8 100644
--- a/connectivity/source/drivers/file/fcode.cxx
+++ b/connectivity/source/drivers/file/fcode.cxx
@@ -143,7 +143,7 @@ OOperandParam::OOperandParam(OSQLParseNode* pNode, sal_Int32 _nPos)
aParameterName = pNode->getChild(1)->getTokenValue();
else
{
- OSL_ASSERT("Fehler im Parse Tree");
+ OSL_FAIL("Fehler im Parse Tree");
}
// set up Parameter-Column with default type, can be specified more precisely later using Describe-Parameter
@@ -200,7 +200,7 @@ OOperandConst::OOperandConst(const OSQLParseNode& rColumnRef, const rtl::OUStrin
}
else
{
- OSL_ASSERT("Parse Error");
+ OSL_FAIL("Parse Error");
}
m_aValue.setBound(sal_True);
}