diff --git a/stepmania/src/XmlFile.cpp b/stepmania/src/XmlFile.cpp index 681dcd6ad9..483b773262 100644 --- a/stepmania/src/XmlFile.cpp +++ b/stepmania/src/XmlFile.cpp @@ -137,11 +137,11 @@ bool XNode::RemoveAttr( const RString &sName ) { XAttrs::iterator it = m_attrs.find( sName ); if( it == m_attrs.end() ) - return false; + return false; delete it->second; m_attrs.erase( it ); - return true; + return true; } /* If bOverwrite is true and a node already exists with that name, the old value will be deleted.