aboutsummaryrefslogtreecommitdiffstats
path: root/src/net/pop3/POP3Utils.cpp
diff options
context:
space:
mode:
Diffstat (limited to 'src/net/pop3/POP3Utils.cpp')
-rw-r--r--src/net/pop3/POP3Utils.cpp2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/net/pop3/POP3Utils.cpp b/src/net/pop3/POP3Utils.cpp
index c065b695..c4654956 100644
--- a/src/net/pop3/POP3Utils.cpp
+++ b/src/net/pop3/POP3Utils.cpp
@@ -43,7 +43,7 @@ void POP3Utils::parseMultiListOrUidlResponse(ref <POP3Response> response, std::m
{
std::map <int, string> ids;
- for (unsigned int i = 0, n = response->getLineCount() ; i < n ; ++i)
+ for (size_t i = 0, n = response->getLineCount() ; i < n ; ++i)
{
string line = response->getLineAt(i);
string::iterator it = line.begin();