summaryrefslogtreecommitdiffstats
path: root/Source
diff options
context:
space:
mode:
authorPeter Kümmel <syntheticpp@gmx.net>2012-07-13 13:21:33 (GMT)
committerPeter Kümmel <syntheticpp@gmx.net>2012-07-13 13:22:03 (GMT)
commit42592966c514015cef070d6b24a0c29f22ac2999 (patch)
treec03ce073ab89d403f31ef9ac726df11efb9bdca0 /Source
parent379984883665d86a9c593acda8b24713e200f9ba (diff)
downloadCMake-42592966c514015cef070d6b24a0c29f22ac2999.zip
CMake-42592966c514015cef070d6b24a0c29f22ac2999.tar.gz
CMake-42592966c514015cef070d6b24a0c29f22ac2999.tar.bz2
Ninja: fix sytle
Diffstat (limited to 'Source')
-rw-r--r--Source/cmNinjaNormalTargetGenerator.cxx3
1 files changed, 2 insertions, 1 deletions
diff --git a/Source/cmNinjaNormalTargetGenerator.cxx b/Source/cmNinjaNormalTargetGenerator.cxx
index cc49e39..5c9bf78 100644
--- a/Source/cmNinjaNormalTargetGenerator.cxx
+++ b/Source/cmNinjaNormalTargetGenerator.cxx
@@ -495,7 +495,8 @@ void cmNinjaNormalTargetGenerator::WriteLinkStatement()
int commandLineLengthLimit = 8000 - linkRuleLength;
#elif defined(__linux) || defined(__APPLE__)
// for instance ARG_MAX is 2096152 on Ubuntu or 262144 on Mac
- int commandLineLengthLimit = ((int)sysconf(_SC_ARG_MAX)) - linkRuleLength - 1000;
+ int commandLineLengthLimit = ((int)sysconf(_SC_ARG_MAX))
+ - linkRuleLength - 1000;
#else
int commandLineLengthLimit = -1;
#endif