summaryrefslogtreecommitdiffstats
path: root/Source
diff options
context:
space:
mode:
authorBrad King <brad.king@kitware.com>2007-12-13 23:30:53 (GMT)
committerBrad King <brad.king@kitware.com>2007-12-13 23:30:53 (GMT)
commit6db2c473e2e04bd599e229d40416169b93886159 (patch)
treee381dbfe929f6c537f704e64da399e390f0d4173 /Source
parent9f61e2a235fc04e57237dc932aee61b264ef8916 (diff)
downloadCMake-6db2c473e2e04bd599e229d40416169b93886159.zip
CMake-6db2c473e2e04bd599e229d40416169b93886159.tar.gz
CMake-6db2c473e2e04bd599e229d40416169b93886159.tar.bz2
COMP: Add missing return value from Bill's change.
Diffstat (limited to 'Source')
-rw-r--r--Source/cmake.cxx1
1 files changed, 1 insertions, 0 deletions
diff --git a/Source/cmake.cxx b/Source/cmake.cxx
index fd59808..930d1ec 100644
--- a/Source/cmake.cxx
+++ b/Source/cmake.cxx
@@ -1810,6 +1810,7 @@ int cmake::HandleDeleteCacheVariables(const char* var)
// re-run configure
return this->Configure();
}
+ return 0;
}
int cmake::Configure()