commit | 0feecbd6f3c95bf88a906cf05d950223fce342d1 | [log] [tgz] |
---|---|---|
author | Dave Rodgman <dave.rodgman@arm.com> | Fri Mar 31 16:10:18 2023 +0100 |
committer | Dave Rodgman <dave.rodgman@arm.com> | Fri Mar 31 16:10:18 2023 +0100 |
tree | 9679ca879b79fee69b4384cd1ab2b48ccd963ee3 | |
parent | 1a0a2c6baaef1388970bc613295df358f7442372 [diff] |
Copy the struct to align it, avoiding an ABI break Signed-off-by: Dave Rodgman <dave.rodgman@arm.com>
diff --git a/include/mbedtls/timing.h b/include/mbedtls/timing.h index 43ce523..597ef75 100644 --- a/include/mbedtls/timing.h +++ b/include/mbedtls/timing.h
@@ -42,7 +42,7 @@ * \brief timer structure */ struct mbedtls_timing_hr_time { - uint64_t opaque[4]; + unsigned char opaque[32]; }; /**