remove unnecessary call to c_str()

svn path=/branches/xmlbuildsystem/; revision=13070
This commit is contained in:
Royce Mitchell III 2005-01-15 23:14:53 +00:00
parent 8df8ba2e6a
commit 2735c4ca05

View file

@ -83,7 +83,7 @@ MingwModuleHandler::ReplaceExtension ( const string& filename,
string
MingwModuleHandler::GetModuleArchiveFilename ( const Module& module ) const
{
return ReplaceExtension ( FixupTargetFilename ( module.GetPath () ).c_str (),
return ReplaceExtension ( FixupTargetFilename ( module.GetPath () ),
".a" );
}