diff options
author | Joel Sing <jsing@cvs.openbsd.org> | 2014-05-11 12:20:21 +0000 |
---|---|---|
committer | Joel Sing <jsing@cvs.openbsd.org> | 2014-05-11 12:20:21 +0000 |
commit | 1e2edac547910d9a2e9b8376d9b7b3d98895e578 (patch) | |
tree | 7ae72f46daf5ec2e8b992d0decd54be138867f08 /lib/libcrypto/evp/evp_err.c | |
parent | c7b199898c63385c578e7df98c5b39284d110f37 (diff) |
More KNF.
Diffstat (limited to 'lib/libcrypto/evp/evp_err.c')
-rw-r--r-- | lib/libcrypto/evp/evp_err.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/lib/libcrypto/evp/evp_err.c b/lib/libcrypto/evp/evp_err.c index 790459fab40..80247319389 100644 --- a/lib/libcrypto/evp/evp_err.c +++ b/lib/libcrypto/evp/evp_err.c @@ -68,7 +68,7 @@ #define ERR_FUNC(func) ERR_PACK(ERR_LIB_EVP,func,0) #define ERR_REASON(reason) ERR_PACK(ERR_LIB_EVP,0,reason) -static ERR_STRING_DATA EVP_str_functs[]= { +static ERR_STRING_DATA EVP_str_functs[] = { {ERR_FUNC(EVP_F_AESNI_INIT_KEY), "AESNI_INIT_KEY"}, {ERR_FUNC(EVP_F_AESNI_XTS_CIPHER), "AESNI_XTS_CIPHER"}, {ERR_FUNC(EVP_F_AES_INIT_KEY), "AES_INIT_KEY"}, @@ -149,7 +149,7 @@ static ERR_STRING_DATA EVP_str_functs[]= { {0, NULL} }; -static ERR_STRING_DATA EVP_str_reasons[]= { +static ERR_STRING_DATA EVP_str_reasons[] = { {ERR_REASON(EVP_R_AES_IV_SETUP_FAILED) , "aes iv setup failed"}, {ERR_REASON(EVP_R_AES_KEY_SETUP_FAILED) , "aes key setup failed"}, {ERR_REASON(EVP_R_ASN1_LIB) , "asn1 lib"}, |