ssl_cli.c : add explicit casting to unsigned char

Signal casting from size_t to unsigned char explicitly, so that the compiler
does not raise a warning about possible loss of data on MSVC, targeting
64-bit Windows.
diff --git a/library/ssl_cli.c b/library/ssl_cli.c
index 7805905..aabf4d4 100644
--- a/library/ssl_cli.c
+++ b/library/ssl_cli.c
@@ -3171,7 +3171,7 @@
         }
 
         /* Copy ECPoint structure to outgoing message buffer. */
-        ssl->out_msg[header_len] = own_pubkey_ecpoint_len;
+        ssl->out_msg[header_len] = (unsigned char) own_pubkey_ecpoint_len;
         memcpy( ssl->out_msg + header_len + 1,
                 own_pubkey_ecpoint, own_pubkey_ecpoint_len );
         content_len = own_pubkey_ecpoint_len + 1;