mirror of
https://github.com/Mbed-TLS/mbedtls.git
synced 2025-12-24 17:41:01 +03:00
Fix use of sizeof without brackets
Signed-off-by: Dave Rodgman <dave.rodgman@arm.com>
This commit is contained in:
@@ -456,7 +456,7 @@ int mbedtls_ripemd160_self_test(int verbose)
|
||||
int i, ret = 0;
|
||||
unsigned char output[20];
|
||||
|
||||
memset(output, 0, sizeof output);
|
||||
memset(output, 0, sizeof(output));
|
||||
|
||||
for (i = 0; i < TESTS; i++) {
|
||||
if (verbose != 0) {
|
||||
|
||||
Reference in New Issue
Block a user