Skip to content

Commit

Permalink
fix build issue on win32
Browse files Browse the repository at this point in the history
  • Loading branch information
sfc-gh-ext-simba-hx committed Jul 22, 2024
1 parent 6b82d26 commit 05a6a65
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -204,7 +204,7 @@ Aws::Client::RequestCompression::uncompress(std::shared_ptr<Aws::IOStream> input
{
// calculating stream size
input->seekg(0, input->end);
size_t streamSize = input->tellg();
size_t streamSize = (size_t)input->tellg();
input->seekg(0, input->beg);

AWS_LOGSTREAM_TRACE(AWS_REQUEST_COMPRESSION_LOG_TAG, "Uncompressing request of " << streamSize << " bytes.");
Expand Down

0 comments on commit 05a6a65

Please sign in to comment.