summaryrefslogtreecommitdiffstats
path: root/ssl/ssl_locl.h
diff options
context:
space:
mode:
authorDr. Stephen Henson <steve@openssl.org>2008-06-03 10:17:45 +0000
committerDr. Stephen Henson <steve@openssl.org>2008-06-03 10:17:45 +0000
commit45d3767d28113d2db0448d3e677429aa332ad885 (patch)
tree3a1238641dc55972bc121ee3b12c52c1c38169fb /ssl/ssl_locl.h
parent8671b898609777c95aedf33743419a523874e6e8 (diff)
Prevent signed/unsigned warning on VC++
Diffstat (limited to 'ssl/ssl_locl.h')
-rw-r--r--ssl/ssl_locl.h2
1 files changed, 1 insertions, 1 deletions
diff --git a/ssl/ssl_locl.h b/ssl/ssl_locl.h
index 0238676ff3..e3cb05e2f6 100644
--- a/ssl/ssl_locl.h
+++ b/ssl/ssl_locl.h
@@ -565,7 +565,7 @@ typedef struct ssl3_comp_st
typedef struct ssl3_buf_freelist_st
{
size_t chunklen;
- int len;
+ unsigned int len;
struct ssl3_buf_freelist_entry_st *head;
} SSL3_BUF_FREELIST;