summaryrefslogtreecommitdiffstats
path: root/Source/kwsys
diff options
context:
space:
mode:
authorSebastien Barre <sebastien.barre@kitware.com>2005-03-16 15:15:13 (GMT)
committerSebastien Barre <sebastien.barre@kitware.com>2005-03-16 15:15:13 (GMT)
commit74ec81ca3fb83acfec6cfd0a972e93870d3565d3 (patch)
treef34673e8a870162eb8eb98ec6fdaa30a9f39d9bc /Source/kwsys
parentdb10dc0f1ee66d1deeb5ad4ec6bf744e452d157c (diff)
downloadCMake-74ec81ca3fb83acfec6cfd0a972e93870d3565d3.zip
CMake-74ec81ca3fb83acfec6cfd0a972e93870d3565d3.tar.gz
CMake-74ec81ca3fb83acfec6cfd0a972e93870d3565d3.tar.bz2
FIX: that was wrong
Diffstat (limited to 'Source/kwsys')
-rw-r--r--Source/kwsys/SystemTools.cxx2
1 files changed, 1 insertions, 1 deletions
diff --git a/Source/kwsys/SystemTools.cxx b/Source/kwsys/SystemTools.cxx
index 45e7175..d2f138f 100644
--- a/Source/kwsys/SystemTools.cxx
+++ b/Source/kwsys/SystemTools.cxx
@@ -836,7 +836,7 @@ kwsys_stl::string SystemTools::AddSpaceBetweenCapitalizedWords(
{
n += ' ';
}
- n += s[0];
+ n += s[i];
}
}
return n;