From 7f93264ab10e9d29e145e9c2231dd77517762822 Mon Sep 17 00:00:00 2001 From: Gabor Mezei Date: Fri, 12 Aug 2022 15:37:27 +0200 Subject: [PATCH] Change struct element order Signed-off-by: Gabor Mezei --- library/bignum_mod.h | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/library/bignum_mod.h b/library/bignum_mod.h index ce871a9eee..2fb520cfb0 100644 --- a/library/bignum_mod.h +++ b/library/bignum_mod.h @@ -45,8 +45,8 @@ typedef enum typedef struct { - size_t n; mbedtls_mpi_uint *p; + size_t n; } mbedtls_mpi_mod_residue; typedef void *mbedtls_mpi_mont_struct;