Browse Source

COMP: fix warning

Ken Martin 19 years ago
parent
commit
ba75d1e823
1 changed files with 2 additions and 1 deletions
  1. 2 1
      Source/cmCPluginAPI.cxx

+ 2 - 1
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