mirror of
https://github.com/wolfSSL/wolfssl.git
synced 2025-07-31 11:17:29 +02:00
wolfssl/wolfcrypt/sp_int.h: fix a missed bugprone-macro-parentheses in the C89 path.
This commit is contained in:
@ -815,7 +815,7 @@ while (0)
|
|||||||
/* Declare a dynamically allocated mp_int. */
|
/* Declare a dynamically allocated mp_int. */
|
||||||
#define DECL_MP_INT_SIZE_DYN(name, bits, max) \
|
#define DECL_MP_INT_SIZE_DYN(name, bits, max) \
|
||||||
unsigned char name##d[MP_INT_SIZEOF(MP_BITS_CNT(max))]; \
|
unsigned char name##d[MP_INT_SIZEOF(MP_BITS_CNT(max))]; \
|
||||||
sp_int* name = (sp_int*)name##d
|
sp_int* (name) = (sp_int*)name##d
|
||||||
#endif
|
#endif
|
||||||
/* Declare a statically allocated mp_int. */
|
/* Declare a statically allocated mp_int. */
|
||||||
#define DECL_MP_INT_SIZE(name, bits) \
|
#define DECL_MP_INT_SIZE(name, bits) \
|
||||||
|
Reference in New Issue
Block a user