Skip to content

Commit

Permalink
Eliminate warning about signedness
Browse files Browse the repository at this point in the history
  • Loading branch information
Vort committed Jul 12, 2023
1 parent 47de1d7 commit f7795f7
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion daemon/i2pd.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -61,7 +61,7 @@ void StartProfiling()
{
lastRequestTime = now;
std::unique_lock<std::mutex> l(i2p::g_CrResultsMutex);
for (int i = 0; i < i2p::g_CrResults.size(); i++)
for (size_t i = 0; i < i2p::g_CrResults.size(); i++)
crstatfs << i2p::g_CrResults[i] << std::endl;
i2p::g_CrResults.clear();
crstatfs << std::flush;
Expand Down

0 comments on commit f7795f7

Please sign in to comment.