summaryrefslogtreecommitdiffstats
path: root/ssl/d1_both.c
diff options
context:
space:
mode:
authorDr. Stephen Henson <steve@openssl.org>2010-01-26 13:24:08 +0000
committerDr. Stephen Henson <steve@openssl.org>2010-01-26 13:24:08 +0000
commite8387db0c42eb09c1c33c9241162dd514220fd04 (patch)
tree2085a20a5c3d0aa23be9e403b0d0a5c9527146e3 /ssl/d1_both.c
parent81f28ca5676b9dd8c75f6e323db16789e7e37f60 (diff)
Fix VC++ warning (change had already been made to other branches).
Diffstat (limited to 'ssl/d1_both.c')
-rw-r--r--ssl/d1_both.c2
1 files changed, 1 insertions, 1 deletions
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");