From: Dr. Stephen Henson Date: Tue, 3 Jun 2008 10:17:45 +0000 (+0000) Subject: Prevent signed/unsigned warning on VC++ X-Git-Tag: OpenSSL_0_9_8k^2~348 X-Git-Url: https://git.openssl.org/gitweb/?p=openssl.git;a=commitdiff_plain;h=45d3767d28113d2db0448d3e677429aa332ad885;ds=sidebyside Prevent signed/unsigned warning on VC++ --- 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;