tidy-up: miscellaneous

Closes #20851
This commit is contained in:
Viktor Szakats 2026-02-26 03:13:56 +01:00
parent cbb5544c45
commit ccba492024
No known key found for this signature in database
36 changed files with 114 additions and 118 deletions

View file

@ -203,7 +203,7 @@ typedef struct md4_ctx MD4_CTX;
* The MD4 transformation for all three rounds.
*/
#define MD4_STEP(f, a, b, c, d, x, s) \
(a) += f((b), (c), (d)) + (x); \
(a) += f(b, c, d) + (x); \
(a) = (((a) << (s)) | (((a) & 0xffffffff) >> (32 - (s))));
/*