mirror of
https://git.suyu.dev/suyu/mbedtls.git
synced 2025-12-24 00:06:32 +01:00
Add further missing brackets around macro parameters
This commit is contained in:
parent
ee60034a60
commit
3ac21aca9b
6 changed files with 10 additions and 10 deletions
|
|
@ -239,8 +239,8 @@ int mbedtls_internal_sha512_process( mbedtls_sha512_context *ctx,
|
|||
#define P(a,b,c,d,e,f,g,h,x,K) \
|
||||
do \
|
||||
{ \
|
||||
temp1 = (h) + S3(e) + F1(e,f,g) + (K) + (x); \
|
||||
temp2 = S2(a) + F0(a,b,c); \
|
||||
temp1 = (h) + S3(e) + F1((e),(f),(g)) + (K) + (x); \
|
||||
temp2 = S2(a) + F0((a),(b),(c)); \
|
||||
(d) += temp1; (h) = temp1 + temp2; \
|
||||
} while( 0 )
|
||||
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue