Browse Source

COMP: Fix conversion warning.

Brad King 20 years ago
parent
commit
9f38df7046
1 changed files with 1 additions and 1 deletions
  1. 1 1
      Source/cmLocalUnixMakefileGenerator3.cxx

+ 1 - 1
Source/cmLocalUnixMakefileGenerator3.cxx

@@ -2183,7 +2183,7 @@ cmLocalUnixMakefileGenerator3
   cmTarget* target = m_Makefile->FindTarget(name);
 
   // If no target was found in the current makefile search globally.
-  bool local = target;
+  bool local = target?true:false;
   if(!local)
     {
     target = m_GlobalGenerator->FindTarget(0, name);