Fix size type conversion warning in RunTest.

This commit is contained in:
Zach Mullen 2009-12-21 09:52:56 -05:00
parent 24ba4d7e01
commit 3312e3d710
1 changed files with 1 additions and 1 deletions

View File

@ -94,7 +94,7 @@ void cmCTestRunTest::CompressOutput()
return;
}
strm.avail_in = this->ProcessOutput.size();
strm.avail_in = static_cast<uInt>(this->ProcessOutput.size());
strm.next_in = in;
strm.avail_out = outSize;
strm.next_out = out;