From e8387db0c42eb09c1c33c9241162dd514220fd04 Mon Sep 17 00:00:00 2001 From: "Dr. Stephen Henson" Date: Tue, 26 Jan 2010 13:24:08 +0000 Subject: [PATCH] Fix VC++ warning (change had already been made to other branches). --- ssl/d1_both.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/ssl/d1_both.c b/ssl/d1_both.c index 3b9c7567b5..0a5c08d713 100644 --- a/ssl/d1_both.c +++ b/ssl/d1_both.c @@ -988,7 +988,7 @@ dtls1_retransmit_buffered_messages(SSL *s) { frag = (hm_fragment *)item->data; if ( dtls1_retransmit_message(s, - dtls1_get_queue_priority(frag->msg_header.seq, frag->msg_header.is_ccs), + (unsigned short)dtls1_get_queue_priority(frag->msg_header.seq, frag->msg_header.is_ccs), 0, &found) <= 0 && found) { fprintf(stderr, "dtls1_retransmit_message() failed\n"); -- 2.25.1