summaryrefslogtreecommitdiff
path: root/connectivity
diff options
context:
space:
mode:
authorHenrik Palomäki <henrik.palomaki@yandex.com>2021-11-23 19:37:07 +0200
committerJulien Nabet <serval2412@yahoo.fr>2021-11-23 20:58:10 +0100
commite8ef9c403f6ceb7b3fbe8d9b3c9622963a7f7a34 (patch)
treeec76f3c3310a8d6d595772d2d1e83a7afc4d0419 /connectivity
parent2e0d5203b0b8133ebc2e6f90c0e0a24962f144f2 (diff)
tdf#114441 Change use of sal_uInt32 to sal_Int32
This patch fixes my previous commit. It changes use of sal_uInt32 to sal_Int32 as it suits better here. Change-Id: Ia92e5eee70dbf00009321481e8be8ddd7c9b138e Reviewed-on: https://gerrit.libreoffice.org/c/core/+/125737 Tested-by: Jenkins Reviewed-by: Julien Nabet <serval2412@yahoo.fr>
Diffstat (limited to 'connectivity')
-rw-r--r--connectivity/source/drivers/flat/ETable.cxx2
1 files changed, 1 insertions, 1 deletions
diff --git a/connectivity/source/drivers/flat/ETable.cxx b/connectivity/source/drivers/flat/ETable.cxx
index 83ce7eb3c090..f4676c8712c6 100644
--- a/connectivity/source/drivers/flat/ETable.cxx
+++ b/connectivity/source/drivers/flat/ETable.cxx
@@ -201,7 +201,7 @@ void OFlatTable::impl_fillColumnInfo_nothrow(QuotedTokenizedString const & aFirs
if ( io_nType != DataType::VARCHAR )
{
bool bNumeric = io_nType == DataType::SQLNULL || io_nType == DataType::DOUBLE || io_nType == DataType::DECIMAL || io_nType == DataType::INTEGER;
- sal_uInt32 nIndex = 0;
+ sal_Int32 nIndex = 0;
if ( bNumeric )
{