Review corrections 5

 -Remove unintentional type chaneg (size_t to uint32_t)
 -Follow mbedtls coding style in trace message
diff --git a/library/ssl_tls.c b/library/ssl_tls.c
index 7f689af..c9d4064 100644
--- a/library/ssl_tls.c
+++ b/library/ssl_tls.c
@@ -5775,7 +5775,7 @@
     if( ( hs_buf->is_valid == 1 ) && ( hs_buf->is_complete == 1 ) )
     {
         /* Synthesize a record containing the buffered HS message. */
-        uint32_t msg_len = (uint32_t)mbedtls_platform_get_uint24_be( &hs_buf->data[1] );
+        size_t msg_len = mbedtls_platform_get_uint24_be( &hs_buf->data[1] );
 
         /* Double-check that we haven't accidentally buffered
          * a message that doesn't fit into the input buffer. */