summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorKen Martin <ken.martin@kitware.com>2006-07-25 18:15:01 (GMT)
committerKen Martin <ken.martin@kitware.com>2006-07-25 18:15:01 (GMT)
commitf35c6d461a16d5903f91552347feccc300d77365 (patch)
tree5a3b93558e04f6765a3831677e721609eefacd73
parent2433bf45172df45cd3dd4c6e2a5f47f288515ad6 (diff)
downloadCMake-f35c6d461a16d5903f91552347feccc300d77365.zip
CMake-f35c6d461a16d5903f91552347feccc300d77365.tar.gz
CMake-f35c6d461a16d5903f91552347feccc300d77365.tar.bz2
COMP: fix compile issue
-rw-r--r--Source/kwsys/testSystemTools.cxx2
1 files changed, 1 insertions, 1 deletions
diff --git a/Source/kwsys/testSystemTools.cxx b/Source/kwsys/testSystemTools.cxx
index f5550ae..c4da9e1 100644
--- a/Source/kwsys/testSystemTools.cxx
+++ b/Source/kwsys/testSystemTools.cxx
@@ -152,7 +152,7 @@ bool CheckStringOperations()
res = false;
}
- const char * cres =
+ char * cres =
kwsys::SystemTools::AppendStrings("Mary Had A"," Little Lamb.");
if (strcmp(cres,"Mary Had A Little Lamb."))
{