connectivity/source/drivers/flat/ETable.cxx | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-)
New commits: commit e8ef9c403f6ceb7b3fbe8d9b3c9622963a7f7a34 Author: Henrik Palomäki <henrik.palom...@yandex.com> AuthorDate: Tue Nov 23 19:37:07 2021 +0200 Commit: Julien Nabet <serval2...@yahoo.fr> CommitDate: Tue Nov 23 20:58:10 2021 +0100 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 <serval2...@yahoo.fr> 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 ) {