aboutsummaryrefslogtreecommitdiff
path: root/lib/pop3.h
diff options
context:
space:
mode:
authorBen Greear <greearb@candelatech.com>2010-04-02 21:02:35 +0200
committerDaniel Stenberg <daniel@haxx.se>2010-04-02 21:02:35 +0200
commite7e37a246a2ebd55b8b507e5a3d27744feff6203 (patch)
treeb020467fbc7c37f17b697103719098d8150cc23e /lib/pop3.h
parent78b284014bf32235722c63deb597cfb9f6a9366d (diff)
fixed compiler warnings
Diffstat (limited to 'lib/pop3.h')
-rw-r--r--lib/pop3.h4
1 files changed, 2 insertions, 2 deletions
diff --git a/lib/pop3.h b/lib/pop3.h
index 20a226985..337421cac 100644
--- a/lib/pop3.h
+++ b/lib/pop3.h
@@ -43,8 +43,8 @@ typedef enum {
struct pop3_conn {
struct pingpong pp;
char *mailbox; /* what to RETR */
- int eob; /* number of bytes of the EOB (End Of Body) that has been
- received thus far */
+ size_t eob; /* number of bytes of the EOB (End Of Body) that has been
+ received thus far */
pop3state state; /* always use pop3.c:state() to change state! */
};