diff options
author | Ken Martin <ken.martin@kitware.com> | 2006-05-12 17:53:21 (GMT) |
---|---|---|
committer | Ken Martin <ken.martin@kitware.com> | 2006-05-12 17:53:21 (GMT) |
commit | daa37f116340fa86c1a511847fe65ad999095fa0 (patch) | |
tree | c7b5e27c5bc3407266dca8ea5c987ff32a81b5a2 /Source/cmSystemTools.cxx | |
parent | 2bb24565e5fb9ba99aa3164332a81504a7eb51b0 (diff) | |
download | CMake-daa37f116340fa86c1a511847fe65ad999095fa0.zip CMake-daa37f116340fa86c1a511847fe65ad999095fa0.tar.gz CMake-daa37f116340fa86c1a511847fe65ad999095fa0.tar.bz2 |
STYLE: fix line length
Diffstat (limited to 'Source/cmSystemTools.cxx')
-rw-r--r-- | Source/cmSystemTools.cxx | 7 |
1 files changed, 4 insertions, 3 deletions
diff --git a/Source/cmSystemTools.cxx b/Source/cmSystemTools.cxx index e25ce13..bc9af6a 100644 --- a/Source/cmSystemTools.cxx +++ b/Source/cmSystemTools.cxx @@ -84,7 +84,8 @@ const char* cmSystemTools::GetWindows9xComspecSubstitute() return cmSystemTools::s_Windows9xComspecSubstitute.c_str(); } -void (*cmSystemTools::s_ErrorCallback)(const char*, const char*, bool&, void*); +void (*cmSystemTools::s_ErrorCallback)(const char*, const char*, + bool&, void*); void (*cmSystemTools::s_StdoutCallback)(const char*, int len, void*); void* cmSystemTools::s_ErrorCallbackClientData = 0; void* cmSystemTools::s_StdoutCallbackClientData = 0; @@ -1254,8 +1255,8 @@ std::string cmSystemTools::RelativePath(const char* local, const char* remote) } if(!cmSystemTools::FileIsFullPath(remote)) { - cmSystemTools::Error("RelativePath must be passed a full path to remote: ", - remote); + cmSystemTools::Error + ("RelativePath must be passed a full path to remote: ", remote); } return cmsys::SystemTools::RelativePath(local, remote); } |