summaryrefslogtreecommitdiffstats
path: root/Source/CPack/cmCPackGenerator.cxx
diff options
context:
space:
mode:
authorAndreas Mohr <andim2@users.sourceforge.net>2012-11-10 14:49:05 (GMT)
committerEric NOULARD <eric.noulard@gmail.com>2012-11-10 14:49:05 (GMT)
commit572d9e1e057e64ae9eccda5db8b08c3164a34bc4 (patch)
treebf6033d77bfed399cd4532e9e40e6c0d2f8b2cf1 /Source/CPack/cmCPackGenerator.cxx
parent342934d4de7482734bdb3b476b8afd49a0bcdf10 (diff)
downloadCMake-572d9e1e057e64ae9eccda5db8b08c3164a34bc4.zip
CMake-572d9e1e057e64ae9eccda5db8b08c3164a34bc4.tar.gz
CMake-572d9e1e057e64ae9eccda5db8b08c3164a34bc4.tar.bz2
Correct string literal typo (have "(NULL)" like all other cases).
Signed-off-by: Eric NOULARD <eric.noulard@gmail.com>
Diffstat (limited to 'Source/CPack/cmCPackGenerator.cxx')
-rw-r--r--Source/CPack/cmCPackGenerator.cxx2
1 files changed, 1 insertions, 1 deletions
diff --git a/Source/CPack/cmCPackGenerator.cxx b/Source/CPack/cmCPackGenerator.cxx
index e964696..b57dbcb 100644
--- a/Source/CPack/cmCPackGenerator.cxx
+++ b/Source/CPack/cmCPackGenerator.cxx
@@ -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;
}