ENH: remove warnings

This commit is contained in:
Bill Hoffman 2004-04-29 12:33:18 -04:00
parent 55af104169
commit 56f960296f
2 changed files with 2 additions and 3 deletions

View File

@ -71,8 +71,7 @@ bool cmGetTargetPropertyCommand::InitialPass(
} }
else else
{ {
const char *prop = 0; const char *prop = target.GetProperty(args[2].c_str());
prop = target.GetProperty(args[2].c_str());
if (prop) if (prop)
{ {
m_Makefile->AddDefinition(var, prop); m_Makefile->AddDefinition(var, prop);

View File

@ -3081,7 +3081,7 @@ cmLocalUnixMakefileGenerator::CreateSafeUniqueObjectFileName(const char* sin)
if ( it == m_UniqueObjectNamesMap.end() ) if ( it == m_UniqueObjectNamesMap.end() )
{ {
std::string ssin = sin; std::string ssin = sin;
bool done = false; bool done;
int cc = 0; int cc = 0;
char rpstr[100]; char rpstr[100];
sprintf(rpstr, "_p_"); sprintf(rpstr, "_p_");