summaryrefslogtreecommitdiffstats
path: root/Source
diff options
context:
space:
mode:
authorAndy Cedilnik <andy.cedilnik@kitware.com>2006-03-03 19:28:28 (GMT)
committerAndy Cedilnik <andy.cedilnik@kitware.com>2006-03-03 19:28:28 (GMT)
commit49c0a4b52af4ca2cd7361f253bd387d812b43aa3 (patch)
treef3ff4c066e17157c4b77a015436381f8f872dcfe /Source
parentbc4e5581ee62d0826625bf1344c3bad7f8711dbc (diff)
downloadCMake-49c0a4b52af4ca2cd7361f253bd387d812b43aa3.zip
CMake-49c0a4b52af4ca2cd7361f253bd387d812b43aa3.tar.gz
CMake-49c0a4b52af4ca2cd7361f253bd387d812b43aa3.tar.bz2
COMP: Oops, typo
Diffstat (limited to 'Source')
-rw-r--r--Source/cmake.cxx2
1 files changed, 1 insertions, 1 deletions
diff --git a/Source/cmake.cxx b/Source/cmake.cxx
index 8865e10..36e53bb 100644
--- a/Source/cmake.cxx
+++ b/Source/cmake.cxx
@@ -2089,7 +2089,7 @@ void cmake::GenerateGraphViz(const char* fileName)
if ( depIt->second == 1 )
{
std::map<cmStdString, cmTarget*>::iterator tarTypeIt= targetPtrs.find(tgtName);
- if ( tarTypeIt == targetNamesNodes.end() )
+ if ( tarTypeIt == targetPtrs.end() )
{
// We should not be here.
std::cout << "Cannot find library: " << tgtName << " even though it was added in the previous pass" << std::endl;