Skip to content

Commit 722581e

Browse files
committed
Removing another unnecessary cast in http_win7.cpp.
1 parent 6dc3605 commit 722581e

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

Release/src/http/client/http_win7.cpp

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1272,7 +1272,7 @@ class winhttp_client : public _http_client_communicator
12721272

12731273
// Report progress about downloaded bytes.
12741274
auto progress = p_request_context->m_request._get_impl()->_progress_handler();
1275-
p_request_context->m_downloaded += (size64_t) statusInfoLength;
1275+
p_request_context->m_downloaded += statusInfoLength;
12761276
if (progress)
12771277
{
12781278
try { (*progress)(message_direction::download, p_request_context->m_downloaded); }

0 commit comments

Comments
 (0)