Prevent signed/unsigned warning on VC++

This commit is contained in:
Dr. Stephen Henson 2008-06-03 10:17:45 +00:00
parent 8671b89860
commit 45d3767d28

View File

@ -565,7 +565,7 @@ typedef struct ssl3_comp_st
typedef struct ssl3_buf_freelist_st typedef struct ssl3_buf_freelist_st
{ {
size_t chunklen; size_t chunklen;
int len; unsigned int len;
struct ssl3_buf_freelist_entry_st *head; struct ssl3_buf_freelist_entry_st *head;
} SSL3_BUF_FREELIST; } SSL3_BUF_FREELIST;