connectivity/source/drivers/evoab2/NDatabaseMetaData.cxx | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-)
New commits: commit c7760b326cbfe553184e16f221391ecf27b9bc48 Author: Stephan Bergmann <[email protected]> AuthorDate: Wed Aug 3 11:49:37 2022 +0200 Commit: Stephan Bergmann <[email protected]> CommitDate: Wed Aug 3 14:35:27 2022 +0200 Fix 32-bit builds ...after fc898f20cffe94cfde0a24027480fb97ab84563e "Use some more appropriate index variable types", as reported by Rene, > /home/rene/master/connectivity/source/drivers/evoab2/NDatabaseMetaData.cxx:313:51: error: conversion from 'guint' {aka 'unsigned int'} to 'connectivity::ORowSetValue' is ambiguous > 313 | aRow[17] = new ORowSetValueDecorator( i ); > | ^ Change-Id: I1532a012a9d8c3c4e3768c48e78ed6f50be3fd50 Reviewed-on: https://gerrit.libreoffice.org/c/core/+/137744 Tested-by: Jenkins Reviewed-by: Stephan Bergmann <[email protected]> diff --git a/connectivity/source/drivers/evoab2/NDatabaseMetaData.cxx b/connectivity/source/drivers/evoab2/NDatabaseMetaData.cxx index 2ffd82d0da7b..4589a636d951 100644 --- a/connectivity/source/drivers/evoab2/NDatabaseMetaData.cxx +++ b/connectivity/source/drivers/evoab2/NDatabaseMetaData.cxx @@ -310,7 +310,7 @@ Reference< XResultSet > SAL_CALL OEvoabDatabaseMetaData::getColumns( // COLUMN_NAME aRow[4] = new ORowSetValueDecorator( getFieldName( i ) ); // ORDINAL_POSITION - aRow[17] = new ORowSetValueDecorator( i ); + aRow[17] = new ORowSetValueDecorator( sal_Int32(i) ); aRows.push_back( aRow ); } }
