aboutsummaryrefslogtreecommitdiff
path: root/crypto/comp/comp_err.c
diff options
context:
space:
mode:
Diffstat (limited to 'crypto/comp/comp_err.c')
-rw-r--r--crypto/comp/comp_err.c22
1 files changed, 11 insertions, 11 deletions
diff --git a/crypto/comp/comp_err.c b/crypto/comp/comp_err.c
index 70a6eea0f052..b794e0fa22cd 100644
--- a/crypto/comp/comp_err.c
+++ b/crypto/comp/comp_err.c
@@ -14,26 +14,26 @@
#ifndef OPENSSL_NO_COMP
-# ifndef OPENSSL_NO_ERR
+#ifndef OPENSSL_NO_ERR
static const ERR_STRING_DATA COMP_str_reasons[] = {
- {ERR_PACK(ERR_LIB_COMP, 0, COMP_R_ZLIB_DEFLATE_ERROR),
- "zlib deflate error"},
- {ERR_PACK(ERR_LIB_COMP, 0, COMP_R_ZLIB_INFLATE_ERROR),
- "zlib inflate error"},
- {ERR_PACK(ERR_LIB_COMP, 0, COMP_R_ZLIB_NOT_SUPPORTED),
- "zlib not supported"},
- {0, NULL}
+ { ERR_PACK(ERR_LIB_COMP, 0, COMP_R_ZLIB_DEFLATE_ERROR),
+ "zlib deflate error" },
+ { ERR_PACK(ERR_LIB_COMP, 0, COMP_R_ZLIB_INFLATE_ERROR),
+ "zlib inflate error" },
+ { ERR_PACK(ERR_LIB_COMP, 0, COMP_R_ZLIB_NOT_SUPPORTED),
+ "zlib not supported" },
+ { 0, NULL }
};
-# endif
+#endif
int ossl_err_load_COMP_strings(void)
{
-# ifndef OPENSSL_NO_ERR
+#ifndef OPENSSL_NO_ERR
if (ERR_reason_error_string(COMP_str_reasons[0].error) == NULL)
ERR_load_strings_const(COMP_str_reasons);
-# endif
+#endif
return 1;
}
#else