Merge topic 'CPack-fixTypoInErrorMsg'

572d9e1 Correct string literal typo (have "(NULL)" like all other cases).
This commit is contained in:
Brad King 2012-11-13 14:32:04 -05:00 committed by CMake Topic Stage
commit a00132ced4
1 changed files with 1 additions and 1 deletions

View File

@ -208,7 +208,7 @@ int cmCPackGenerator::InstallProject()
{
cmCPackLogger(cmCPackLog::LOG_ERROR,
"Problem creating temporary directory: "
<< (tempInstallDirectory ? tempInstallDirectory : "(NULL}")
<< (tempInstallDirectory ? tempInstallDirectory : "(NULL)")
<< std::endl);
return 0;
}