summaryrefslogtreecommitdiffstats
path: root/Source/cmSiteNameCommand.cxx
diff options
context:
space:
mode:
authorKen Martin <ken.martin@kitware.com>2006-05-12 17:53:21 (GMT)
committerKen Martin <ken.martin@kitware.com>2006-05-12 17:53:21 (GMT)
commitdaa37f116340fa86c1a511847fe65ad999095fa0 (patch)
treec7b5e27c5bc3407266dca8ea5c987ff32a81b5a2 /Source/cmSiteNameCommand.cxx
parent2bb24565e5fb9ba99aa3164332a81504a7eb51b0 (diff)
downloadCMake-daa37f116340fa86c1a511847fe65ad999095fa0.zip
CMake-daa37f116340fa86c1a511847fe65ad999095fa0.tar.gz
CMake-daa37f116340fa86c1a511847fe65ad999095fa0.tar.bz2
STYLE: fix line length
Diffstat (limited to 'Source/cmSiteNameCommand.cxx')
-rw-r--r--Source/cmSiteNameCommand.cxx6
1 files changed, 3 insertions, 3 deletions
diff --git a/Source/cmSiteNameCommand.cxx b/Source/cmSiteNameCommand.cxx
index 845a40d..7e2e87e 100644
--- a/Source/cmSiteNameCommand.cxx
+++ b/Source/cmSiteNameCommand.cxx
@@ -55,9 +55,9 @@ bool cmSiteNameCommand::InitialPass(std::vector<std::string> const& args)
std::string siteName = "unknown";
#if defined(_WIN32) && !defined(__CYGWIN__)
std::string host;
- if(cmSystemTools::ReadRegistryValue(
- "HKEY_LOCAL_MACHINE\\System\\CurrentControlSet\\Control\\ComputerName\\ComputerName;ComputerName",
- host))
+ if(cmSystemTools::ReadRegistryValue
+ ("HKEY_LOCAL_MACHINE\\System\\CurrentControlSet\\"
+ "Control\\ComputerName\\ComputerName;ComputerName", host))
{
siteName = host;
}