mirror of
https://github.com/Kitware/CMake.git
synced 2026-04-24 23:28:32 -05:00
Fix type conversion warning
This commit is contained in:
+1
-1
@@ -3099,7 +3099,7 @@ bool cmCTest::CompressString(std::string& str)
|
|||||||
return false;
|
return false;
|
||||||
}
|
}
|
||||||
|
|
||||||
strm.avail_in = str.size();
|
strm.avail_in = static_cast<uInt>(str.size());
|
||||||
strm.next_in = in;
|
strm.next_in = in;
|
||||||
strm.avail_out = outSize;
|
strm.avail_out = outSize;
|
||||||
strm.next_out = out;
|
strm.next_out = out;
|
||||||
|
|||||||
Reference in New Issue
Block a user