From 1038d0aa16d10582258e5702ee3637fb0c17bbfa Mon Sep 17 00:00:00 2001
From: Yang Tse <yangsita@gmail.com>
Date: Tue, 29 Nov 2011 20:28:49 +0100
Subject: [PATCH] pop3.c: fix compiler warning

---
 lib/pop3.c | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/lib/pop3.c b/lib/pop3.c
index 5d06dfcb5..cf439c87a 100644
--- a/lib/pop3.c
+++ b/lib/pop3.c
@@ -1045,7 +1045,7 @@ CURLcode Curl_pop3_write(struct connectdata *conn,
      over up to 5 different data chunks.
   */
   struct pop3_conn *pop3c = &conn->proto.pop3c;
-  unsigned int i;
+  size_t i;
 
   /* since the EOB string must be within the last 5 bytes, get the index
      position of where to start to scan for it */
-- 
2.50.1