Skip to content

Commit

Permalink
Merge pull request #252 from private-octopus/extract-ip-stats
Browse files Browse the repository at this point in the history
fix size_t int warning
  • Loading branch information
huitema authored Sep 5, 2024
2 parents 2f51f11 + a7cbf58 commit 38e1ccc
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion lib/ComputeM34.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -337,7 +337,7 @@ bool ComputeM3::GetM33_2()
bool ret = true;
GetM3_X(REGISTRY_DNS_LeakedTLD, &m33_2, 0.001);

for (int i = 0; i < m33_2.size(); i++) {
for (size_t i = 0; i < m33_2.size(); i++) {
if (strcmp(m33_2[i].domain, "ARPA") == 0) {
m33_2.erase(m33_2.begin() + i);
break;
Expand Down

0 comments on commit 38e1ccc

Please sign in to comment.