compielr errors on como

This commit is contained in:
Ken Martin 2003-06-04 08:40:09 -04:00
parent 0b3b21fa63
commit 40123f1fce
1 changed files with 2 additions and 2 deletions

View File

@ -956,7 +956,7 @@ void cmMakefile::AddUtilityCommand(const char* utilityName,
}
else
{
cmCustomCommand cc(command, arguments, dep, NULL);
cmCustomCommand cc(command, arguments, dep, (const char *)0);
target.GetPostBuildCommands().push_back(cc);
}
m_Targets.insert(cmTargets::value_type(utilityName,target));
@ -986,7 +986,7 @@ cmSourceFile *cmMakefile::GetSourceFileWithOutput(const char *cname)
}
// otherwise return NULL
return NULL;
return 0;
}