summaryrefslogtreecommitdiff
path: root/Source/cmCPluginAPI.cxx
diff options
context:
space:
mode:
authorKen Martin <ken.martin@kitware.com>2006-12-07 09:51:28 -0500
committerKen Martin <ken.martin@kitware.com>2006-12-07 09:51:28 -0500
commitba75d1e8232c13ef97416c5f7a909e25abfe1474 (patch)
tree4df16779b9d39d898f6311c268269c1b5b57cf26 /Source/cmCPluginAPI.cxx
parent27379d7b081be852c2b290a98db548cffffbff04 (diff)
downloadcmake-ba75d1e8232c13ef97416c5f7a909e25abfe1474.tar.gz
COMP: fix warning
Diffstat (limited to 'Source/cmCPluginAPI.cxx')
-rw-r--r--Source/cmCPluginAPI.cxx3
1 files changed, 2 insertions, 1 deletions
diff --git a/Source/cmCPluginAPI.cxx b/Source/cmCPluginAPI.cxx
index 7b1f603952..2510382b67 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