Fix cast alignment warning in timing.c

Signed-off-by: Dave Rodgman <dave.rodgman@arm.com>
This commit is contained in:
Dave Rodgman 2023-03-31 11:40:24 +01:00
parent 616f23e016
commit 1a0a2c6baa

View File

@ -42,7 +42,7 @@ extern "C" {
* \brief timer structure * \brief timer structure
*/ */
struct mbedtls_timing_hr_time { struct mbedtls_timing_hr_time {
unsigned char opaque[32]; uint64_t opaque[4];
}; };
/** /**