ENH: fix line length error

This commit is contained in:
Bill Hoffman 2007-10-19 12:03:16 -04:00
parent 64c124be23
commit 4168c0797b
1 changed files with 4 additions and 3 deletions

View File

@ -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;