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: http://git.ipfire.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=45d3767d28113d2db0448d3e677429aa332ad885;p=thirdparty%2Fopenssl.git Prevent signed/unsigned warning on VC++ --- diff --git a/ssl/ssl_locl.h b/ssl/ssl_locl.h index 0238676ff39..e3cb05e2f6b 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;