commit | 1a0a2c6baaef1388970bc613295df358f7442372 | [log] [tgz] |
---|---|---|
author | Dave Rodgman <dave.rodgman@arm.com> | Fri Mar 31 11:40:24 2023 +0100 |
committer | Dave Rodgman <dave.rodgman@arm.com> | Fri Mar 31 11:40:24 2023 +0100 |
tree | 3714a23f3fc0f83fd4eb9ec9082bc9b73464d222 | |
parent | 616f23e0160f8498101cd85d751a8d854c9a20d9 [diff] |
Fix cast alignment warning in timing.c Signed-off-by: Dave Rodgman <dave.rodgman@arm.com>
diff --git a/include/mbedtls/timing.h b/include/mbedtls/timing.h index 597ef75..43ce523 100644 --- a/include/mbedtls/timing.h +++ b/include/mbedtls/timing.h
@@ -42,7 +42,7 @@ * \brief timer structure */ struct mbedtls_timing_hr_time { - unsigned char opaque[32]; + uint64_t opaque[4]; }; /**