summaryrefslogtreecommitdiffstats
path: root/Source/cmSystemTools.cxx
diff options
context:
space:
mode:
authorBill Hoffman <bill.hoffman@kitware.com>2006-12-05 14:14:32 (GMT)
committerBill Hoffman <bill.hoffman@kitware.com>2006-12-05 14:14:32 (GMT)
commitc2308e796f2b9ab68fc8e24189c1605cc1fad1ae (patch)
tree85c4776f988350261b82b8dee0c7c74ed4fd4fd3 /Source/cmSystemTools.cxx
parent6b7bf34341dbb95affc38cd1676945e954636ddc (diff)
downloadCMake-c2308e796f2b9ab68fc8e24189c1605cc1fad1ae.zip
CMake-c2308e796f2b9ab68fc8e24189c1605cc1fad1ae.tar.gz
CMake-c2308e796f2b9ab68fc8e24189c1605cc1fad1ae.tar.bz2
COMP: fix line length style error
Diffstat (limited to 'Source/cmSystemTools.cxx')
-rw-r--r--Source/cmSystemTools.cxx3
1 files changed, 2 insertions, 1 deletions
diff --git a/Source/cmSystemTools.cxx b/Source/cmSystemTools.cxx
index 2a2ee91..5684a5a 100644
--- a/Source/cmSystemTools.cxx
+++ b/Source/cmSystemTools.cxx
@@ -1432,7 +1432,8 @@ int cmSystemToolsGZStructOpen(void* call_data, const char *pathname,
return -1;
}
-#if defined(__BEOS__) && !defined(__ZETA__) // no fchmod on BeOS 5...do pathname instead.
+// no fchmod on BeOS 5...do pathname instead.
+#if defined(__BEOS__) && !defined(__ZETA__)
if ((oflags & O_CREAT) && chmod(pathname, mode))
{
return -1;