summaryrefslogtreecommitdiffstats
path: root/ssl/d1_both.c
diff options
context:
space:
mode:
authorDr. Stephen Henson <steve@openssl.org>2009-04-22 12:17:02 +0000
committerDr. Stephen Henson <steve@openssl.org>2009-04-22 12:17:02 +0000
commita543ea44bcf45d9741c105ca098e445362cbabc7 (patch)
tree4ff195bd8da9eb773a0af392b86562acb1084aec /ssl/d1_both.c
parentb0dd3d1b945564e61bc37649b1c11c0b46fefe55 (diff)
Fix WIN32 warning.
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 1abfd0007a..ffbe5131d7 100644
--- a/ssl/d1_both.c
+++ b/ssl/d1_both.c
@@ -969,7 +969,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");