Skip to content
This repository has been archived by the owner on Aug 2, 2022. It is now read-only.

Commit

Permalink
Merge pull request #7344 from EOSIO/http_plugin_sign_mismatch_18x
Browse files Browse the repository at this point in the history
correct signed mismatch warning in http_plugin - 1.8
  • Loading branch information
arhag authored May 14, 2019
2 parents 8995007 + 8f32afd commit f6d96bb
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion plugins/http_plugin/http_plugin.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -146,7 +146,7 @@ namespace eosio {

uint16_t thread_pool_size = 2;
optional<eosio::chain::named_thread_pool> thread_pool;
std::atomic<int64_t> bytes_in_flight{0};
std::atomic<size_t> bytes_in_flight{0};
size_t max_bytes_in_flight = 0;

optional<tcp::endpoint> https_listen_endpoint;
Expand Down

0 comments on commit f6d96bb

Please sign in to comment.