Skip to content

Commit

Permalink
Browse files Browse the repository at this point in the history
Merge pull request #5610 from landryb/fix/32-bits-build
Remove useless cast breaking build on 32-bits os
  • Loading branch information
jef-n committed Nov 12, 2017
2 parents 3ff0f69 + 97020ff commit 75ea372
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/providers/ogr/qgsogrprovider.cpp
Expand Up @@ -583,7 +583,7 @@ QString QgsOgrProvider::ogrWkbGeometryTypeName( OGRwkbGeometryType type ) const
return geom;
}

switch ( ( long )type )
switch ( type )
{
case wkbUnknown:
geom = QStringLiteral( "Unknown" );
Expand Down

0 comments on commit 75ea372

Please sign in to comment.