Merge pull request #7385 from daverodgman/timing_alignment

Fix cast alignment warning in timing.c
This commit is contained in:
Dave Rodgman
2023-03-31 19:48:34 +01:00
committed by GitHub
2 changed files with 13 additions and 1 deletions

View File

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