Skip to content

Commit aa14a28

Browse files
rouaultnyalldawson
authored andcommittedMar 6, 2023
Update src/core/providers/ogr/qgsogrprovider.cpp
1 parent 15a03fb commit aa14a28

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed
 

‎src/core/providers/ogr/qgsogrprovider.cpp

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -310,7 +310,7 @@ Qgis::VectorExportResult QgsOgrProvider::createEmptyLayer( const QString &uri,
310310
{
311311
if ( layerOption.startsWith( QLatin1String( "FID=" ), Qt::CaseInsensitive ) )
312312
{
313-
fidColumn = layerOption.mid( strlen( "FID=" ) );
313+
fidColumn = layerOption.mid( static_cast<int>( strlen( "FID=" ) ) );
314314
break;
315315
}
316316
}

0 commit comments

Comments
 (0)
Please sign in to comment.