fixed compiler warnings

This commit is contained in:
Ben Greear 2010-04-02 21:02:35 +02:00 committed by Daniel Stenberg
parent 78b284014b
commit e7e37a246a
3 changed files with 7 additions and 7 deletions

View file

@ -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! */
};