summaryrefslogtreecommitdiffstats
path: root/ssl/s3_both.c
diff options
context:
space:
mode:
authorGeoff Thorpe <geoff@openssl.org>2008-08-05 17:48:02 +0000
committerGeoff Thorpe <geoff@openssl.org>2008-08-05 17:48:02 +0000
commit99649b599083c484a6eb57893976fabeb48952e8 (patch)
tree74090bfe9107fe8ef035e09af214aef59811ae89 /ssl/s3_both.c
parent6d6c47980e943f3946b3894ac341d61e3c908c92 (diff)
Fix signed/unsigned warning.
Diffstat (limited to 'ssl/s3_both.c')
-rw-r--r--ssl/s3_both.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/ssl/s3_both.c b/ssl/s3_both.c
index 06e761b4b2..361ecf1f9f 100644
--- a/ssl/s3_both.c
+++ b/ssl/s3_both.c
@@ -620,7 +620,7 @@ freelist_extract(SSL_CTX *ctx, int for_read, int sz)
CRYPTO_w_lock(CRYPTO_LOCK_SSL_CTX);
list = for_read ? ctx->rbuf_freelist : ctx->wbuf_freelist;
- if (list != NULL && sz == list->chunklen)
+ if (list != NULL && sz == (int)list->chunklen)
ent = list->head;
if (ent != NULL)
{