Consistent formatting for sizeof(foo)
Reviewed-by: Richard Levitte <levitte@openssl.org> (Merged from https://github.com/openssl/openssl/pull/4872)
This commit is contained in:
parent
e7a2066944
commit
cbe2964821
54 changed files with 253 additions and 253 deletions
|
@ -3241,9 +3241,9 @@ static int cipher_compare(const void *a, const void *b)
|
|||
|
||||
void ssl_sort_cipher_list(void)
|
||||
{
|
||||
qsort(ssl3_ciphers, SSL3_NUM_CIPHERS, sizeof ssl3_ciphers[0],
|
||||
qsort(ssl3_ciphers, SSL3_NUM_CIPHERS, sizeof(ssl3_ciphers[0]),
|
||||
cipher_compare);
|
||||
qsort(ssl3_scsvs, SSL3_NUM_SCSVS, sizeof ssl3_scsvs[0], cipher_compare);
|
||||
qsort(ssl3_scsvs, SSL3_NUM_SCSVS, sizeof(ssl3_scsvs[0]), cipher_compare);
|
||||
}
|
||||
|
||||
const SSL3_ENC_METHOD SSLv3_enc_data = {
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue