mirror of
https://github.com/reactos/CMake.git
synced 2024-11-24 20:19:53 +00:00
Fix type conversion warning
This commit is contained in:
parent
9c3a0b9f14
commit
0e591ed4c2
@ -3099,7 +3099,7 @@ bool cmCTest::CompressString(std::string& str)
|
||||
return false;
|
||||
}
|
||||
|
||||
strm.avail_in = str.size();
|
||||
strm.avail_in = static_cast<uInt>(str.size());
|
||||
strm.next_in = in;
|
||||
strm.avail_out = outSize;
|
||||
strm.next_out = out;
|
||||
|
Loading…
Reference in New Issue
Block a user