remove unnecessary call to c_str() Modified: branches/xmlbuildsystem/reactos/tools/rbuild/backend/mingw/modulehandler .cpp _____
Modified: branches/xmlbuildsystem/reactos/tools/rbuild/backend/mingw/modulehandler .cpp --- branches/xmlbuildsystem/reactos/tools/rbuild/backend/mingw/modulehandler .cpp 2005-01-15 23:00:02 UTC (rev 13069) +++ branches/xmlbuildsystem/reactos/tools/rbuild/backend/mingw/modulehandler .cpp 2005-01-15 23:14:53 UTC (rev 13070) @@ -83,7 +83,7 @@
string MingwModuleHandler::GetModuleArchiveFilename ( const Module& module ) const { - return ReplaceExtension ( FixupTargetFilename ( module.GetPath () ).c_str (), + return ReplaceExtension ( FixupTargetFilename ( module.GetPath () ), ".a" ); }