From: Pauli Date: Thu, 9 Jan 2020 02:04:54 +0000 (+1000) Subject: sha: fix preprocessor indentation X-Git-Tag: openssl-3.0.0-alpha1~649 X-Git-Url: http://git.ipfire.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=8720b1779442bc0259d89f4fe7f8d46ad4d0b0c0;p=thirdparty%2Fopenssl.git sha: fix preprocessor indentation Reviewed-by: Matt Caswell (Merged from https://github.com/openssl/openssl/pull/10791) --- diff --git a/include/openssl/sha.h b/include/openssl/sha.h index be27e2c9724..3a31bb606b0 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