Skip to content

Commit

Permalink
Formatting fix
Browse files Browse the repository at this point in the history
  • Loading branch information
rouault committed Nov 11, 2017
1 parent 8ae45fa commit ef70eaf
Showing 1 changed file with 4 additions and 4 deletions.
8 changes: 4 additions & 4 deletions src/core/qgsgml.cpp
Expand Up @@ -555,10 +555,10 @@ void QgsGmlStreamingParser::startElement( const XML_Char* el, const XML_Char** a
}
}
}
else if ( ( theParseMode == feature || theParseMode == featureTuple ) &&
mCurrentFeature &&
localNameLen == static_cast<int>( mGeometryAttributeUTF8Len ) &&
memcmp( pszLocalName, mGeometryAttributePtr, localNameLen ) == 0 )
else if (( theParseMode == feature || theParseMode == featureTuple ) &&
mCurrentFeature &&
localNameLen == static_cast<int>( mGeometryAttributeUTF8Len ) &&
memcmp( pszLocalName, mGeometryAttributePtr, localNameLen ) == 0 )
{
mParseModeStack.push( QgsGmlStreamingParser::geometry );
mFoundUnhandledGeometryElement = false;
Expand Down

0 comments on commit ef70eaf

Please sign in to comment.