mirror of
https://github.com/pocoproject/poco.git
synced 2025-10-23 16:48:06 +02:00
fixed VS90 Foundation projects
This commit is contained in:
@@ -788,8 +788,8 @@ NetworkInterface NetworkInterface::forAddress(const IPAddress& addr)
|
||||
|
||||
for (; it != end; ++it)
|
||||
{
|
||||
const unsigned count = it->second.addressList().size();
|
||||
for (unsigned i = 0; i < count; ++i)
|
||||
const std::size_t count = it->second.addressList().size();
|
||||
for (int i = 0; i < count; ++i)
|
||||
{
|
||||
if (it->second.address(i) == addr)
|
||||
return it->second;
|
||||
|
Reference in New Issue
Block a user