Skip to content

Commit

Permalink
Update src/core/providers/ogr/qgsogrprovider.cpp
Browse files Browse the repository at this point in the history
  • Loading branch information
rouault authored and nyalldawson committed Mar 6, 2023
1 parent 15a03fb commit aa14a28
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/core/providers/ogr/qgsogrprovider.cpp
Expand Up @@ -310,7 +310,7 @@ Qgis::VectorExportResult QgsOgrProvider::createEmptyLayer( const QString &uri,
{
if ( layerOption.startsWith( QLatin1String( "FID=" ), Qt::CaseInsensitive ) )
{
fidColumn = layerOption.mid( strlen( "FID=" ) );
fidColumn = layerOption.mid( static_cast<int>( strlen( "FID=" ) ) );
break;
}
}
Expand Down

0 comments on commit aa14a28

Please sign in to comment.