Browse Source

COMP: fix warning

Ken Martin 19 years ago
parent
commit
15d338e26f
1 changed files with 2 additions and 1 deletions
  1. 2 1
      Source/CTest/cmCTestTestHandler.cxx

+ 2 - 1
Source/CTest/cmCTestTestHandler.cxx

@@ -932,7 +932,8 @@ void cmCTestTestHandler::ProcessDirectory(std::vector<cmStdString> &passed,
       }
     
     // process this one test
-    this->ProcessOneTest(&(*it), passed, failed, cnt, tmsize);
+    this->ProcessOneTest(&(*it), passed, failed, cnt, 
+                         static_cast<int>(tmsize));
     }
 
   this->EndTest = this->CTest->CurrentTime();