diff options
author | Ken Martin <ken.martin@kitware.com> | 2006-12-07 14:51:28 (GMT) |
---|---|---|
committer | Ken Martin <ken.martin@kitware.com> | 2006-12-07 14:51:28 (GMT) |
commit | ba75d1e8232c13ef97416c5f7a909e25abfe1474 (patch) | |
tree | 4df16779b9d39d898f6311c268269c1b5b57cf26 /Source/cmCPluginAPI.cxx | |
parent | 27379d7b081be852c2b290a98db548cffffbff04 (diff) | |
download | CMake-ba75d1e8232c13ef97416c5f7a909e25abfe1474.zip CMake-ba75d1e8232c13ef97416c5f7a909e25abfe1474.tar.gz CMake-ba75d1e8232c13ef97416c5f7a909e25abfe1474.tar.bz2 |
COMP: fix warning
Diffstat (limited to 'Source/cmCPluginAPI.cxx')
-rw-r--r-- | Source/cmCPluginAPI.cxx | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/Source/cmCPluginAPI.cxx b/Source/cmCPluginAPI.cxx index 7b1f603..2510382 100644 --- a/Source/cmCPluginAPI.cxx +++ b/Source/cmCPluginAPI.cxx @@ -639,7 +639,8 @@ void CCONV DefineSourceFileProperty (void *arg, const char *name, { cmMakefile *mf = static_cast<cmMakefile *>(arg); mf->GetCMakeInstance()->DefineProperty(name,cmProperty::SOURCE_FILE, - briefDocs, longDocs,chained); + briefDocs, longDocs, + chained != 0); } } // close the extern "C" scope |