Commit 99649b59 authored by Geoff Thorpe's avatar Geoff Thorpe
Browse files

Fix signed/unsigned warning.

parent 6d6c4798
Loading
Loading
Loading
Loading
+1 −1
Original line number Diff line number Diff line
@@ -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)
		{