From 42f9a6eb08adeab2769c2150bb15097fa75d8578 Mon Sep 17 00:00:00 2001 From: Alexander Neundorf Date: Fri, 27 Jul 2007 13:12:36 -0400 Subject: [PATCH] STYLE: fix line length Alex --- Source/CPack/cmCPackDebGenerator.cxx | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/Source/CPack/cmCPackDebGenerator.cxx b/Source/CPack/cmCPackDebGenerator.cxx index a9078f84c..9623dac83 100644 --- a/Source/CPack/cmCPackDebGenerator.cxx +++ b/Source/CPack/cmCPackDebGenerator.cxx @@ -58,7 +58,8 @@ int cmCPackDebGenerator::CompressFiles(const char* outFileName, ctlfilename += "/control"; // debian policy enforce lower case for package name - std::string debian_pkg_name = cmsys::SystemTools::LowerCase( this->GetOption("DEBIAN_PACKAGE_NAME") ); + std::string debian_pkg_name = + cmsys::SystemTools::LowerCase( this->GetOption("DEBIAN_PACKAGE_NAME") ); const char* debian_pkg_version = this->GetOption("DEBIAN_PACKAGE_VERSION"); const char* debian_pkg_arch = this->GetOption("DEBIAN_PACKAGE_ARCHITECTURE"); const char* debian_pkg_dep = this->GetOption("DEBIAN_PACKAGE_DEPENDS");