summaryrefslogtreecommitdiff
path: root/connectivity/source
diff options
context:
space:
mode:
Diffstat (limited to 'connectivity/source')
-rw-r--r--connectivity/source/commontools/FValue.cxx2
1 files changed, 1 insertions, 1 deletions
diff --git a/connectivity/source/commontools/FValue.cxx b/connectivity/source/commontools/FValue.cxx
index 6c2ee2fa82ae..cd3b9e241ed5 100644
--- a/connectivity/source/commontools/FValue.cxx
+++ b/connectivity/source/commontools/FValue.cxx
@@ -1234,7 +1234,7 @@ sal_uInt8 ORowSetValue::getUInt8() const
break;
case DataType::BIT:
case DataType::BOOLEAN:
- nRet = m_aValue.m_bBool;
+ nRet = int(m_aValue.m_bBool);
break;
case DataType::TINYINT:
if ( m_bSigned )