Fix broken build of package kit (due to warnings) for x86_64.
This commit is contained in:
@@ -137,10 +137,10 @@ ZlibCompressor::CompressSingleBuffer(const void* input, size_t inputSize,
|
|||||||
// prepare stream
|
// prepare stream
|
||||||
z_stream zStream = {
|
z_stream zStream = {
|
||||||
(Bytef*)input, // next_in
|
(Bytef*)input, // next_in
|
||||||
inputSize, // avail_in
|
uInt(inputSize), // avail_in
|
||||||
0, // total_in
|
0, // total_in
|
||||||
(Bytef*)output, // next_out
|
(Bytef*)output, // next_out
|
||||||
outputSize, // avail_out
|
uInt(outputSize), // avail_out
|
||||||
0, // total_out
|
0, // total_out
|
||||||
0, // msg
|
0, // msg
|
||||||
0, // state;
|
0, // state;
|
||||||
|
|||||||
@@ -142,10 +142,10 @@ ZlibDecompressor::DecompressSingleBuffer(const void* input, size_t inputSize,
|
|||||||
// prepare stream
|
// prepare stream
|
||||||
z_stream zStream = {
|
z_stream zStream = {
|
||||||
(Bytef*)input, // next_in
|
(Bytef*)input, // next_in
|
||||||
inputSize, // avail_in
|
uInt(inputSize), // avail_in
|
||||||
0, // total_in
|
0, // total_in
|
||||||
(Bytef*)output, // next_out
|
(Bytef*)output, // next_out
|
||||||
outputSize, // avail_out
|
uInt(outputSize), // avail_out
|
||||||
0, // total_out
|
0, // total_out
|
||||||
0, // msg
|
0, // msg
|
||||||
0, // state;
|
0, // state;
|
||||||
|
|||||||
Reference in New Issue
Block a user