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
library
|
@ -142,7 +142,7 @@ int mbedtls_internal_md5_process( mbedtls_md5_context *ctx,
|
|||
#define P(a,b,c,d,k,s,t) \
|
||||
do \
|
||||
{ \
|
||||
(a) += F((b),(c),(d)) + X[k] + (t); \
|
||||
(a) += F((b),(c),(d)) + X[(k)] + (t); \
|
||||
(a) = S((a),(s)) + (b); \
|
||||
} while( 0 )
|
||||
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue