From 8720b1779442bc0259d89f4fe7f8d46ad4d0b0c0 Mon Sep 17 00:00:00 2001 From: Pauli Date: Thu, 9 Jan 2020 12:04:54 +1000 Subject: [PATCH] sha: fix preprocessor indentation Reviewed-by: Matt Caswell (Merged from https://github.com/openssl/openssl/pull/10791) --- include/openssl/sha.h | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/include/openssl/sha.h b/include/openssl/sha.h index be27e2c972..3a31bb606b 100644 --- a/include/openssl/sha.h +++ b/include/openssl/sha.h @@ -19,9 +19,9 @@ # include # include -#ifdef __cplusplus +# ifdef __cplusplus extern "C" { -#endif +# endif /*- * !!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!! @@ -115,8 +115,8 @@ int SHA512_Final(unsigned char *md, SHA512_CTX *c); unsigned char *SHA512(const unsigned char *d, size_t n, unsigned char *md); void SHA512_Transform(SHA512_CTX *c, const unsigned char *data); -#ifdef __cplusplus +# ifdef __cplusplus } -#endif +# endif #endif -- 2.25.1