summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorBill Hoffman <bill.hoffman@kitware.com>2007-10-19 16:03:16 (GMT)
committerBill Hoffman <bill.hoffman@kitware.com>2007-10-19 16:03:16 (GMT)
commit4168c0797bdc3e6c2ff6cdd40bd1099edc5a0c96 (patch)
tree07da8fea2227aa6f7699ed4daae36abe2e4b2791
parent64c124be2315cf0973a15945e4c7bfb219149d73 (diff)
downloadCMake-4168c0797bdc3e6c2ff6cdd40bd1099edc5a0c96.zip
CMake-4168c0797bdc3e6c2ff6cdd40bd1099edc5a0c96.tar.gz
CMake-4168c0797bdc3e6c2ff6cdd40bd1099edc5a0c96.tar.bz2
ENH: fix line length error
-rw-r--r--Source/CPack/cmCPackNSISGenerator.cxx7
1 files changed, 4 insertions, 3 deletions
diff --git a/Source/CPack/cmCPackNSISGenerator.cxx b/Source/CPack/cmCPackNSISGenerator.cxx
index 63d62bf..f742d8e 100644
--- a/Source/CPack/cmCPackNSISGenerator.cxx
+++ b/Source/CPack/cmCPackNSISGenerator.cxx
@@ -283,9 +283,10 @@ void cmCPackNSISGenerator::CreateMenuLinks( cmOStringStream& str,
cpackMenuLinksVector);
if ( cpackMenuLinksVector.size() % 2 != 0 )
{
- cmCPackLogger(cmCPackLog::LOG_ERROR,
- "CPACK_PACKAGE_EXECUTABLES should contain pairs of <executable> and "
- "<icon name>." << std::endl);
+ cmCPackLogger(
+ cmCPackLog::LOG_ERROR,
+ "CPACK_PACKAGE_EXECUTABLES should contain pairs of <executable> and "
+ "<icon name>." << std::endl);
return;
}
std::vector<std::string>::iterator it;