1
0
mirror of https://github.com/Mbed-TLS/mbedtls.git synced 2025-07-30 22:43:08 +03:00

Add further missing brackets around macro parameters

This commit is contained in:
Hanno Becker
2018-10-26 09:13:26 +01:00
committed by Simon Butcher
parent 996033e3df
commit 818bac55ef
6 changed files with 10 additions and 10 deletions

View File

@ -193,8 +193,8 @@ static const uint32_t K[] =
#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 )