Review corrections 5

 -Remove unintentional type chaneg (size_t to uint32_t)
 -Follow mbedtls coding style in trace message
diff --git a/library/ssl_cli.c b/library/ssl_cli.c
index 6b240af..425d357 100644
--- a/library/ssl_cli.c
+++ b/library/ssl_cli.c
@@ -1707,7 +1707,7 @@
     }
 
     MBEDTLS_SSL_DEBUG_MSG( 3, ( "server hello, current time: %lu",
-        (unsigned long)mbedtls_platform_get_uint32_be(&buf[2])) );
+        (unsigned long)mbedtls_platform_get_uint32_be( &buf[2] ) ) );
 
     memcpy( ssl->handshake->randbytes + 32, buf + 2, 32 );