COMP: fix warning

This commit is contained in:
Ken Martin 2007-01-26 09:31:44 -05:00
parent d67ccb828d
commit 15d338e26f
1 changed files with 2 additions and 1 deletions

View File

@ -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();