]> git.ipfire.org Git - thirdparty/openssl.git/commitdiff
sha: fix preprocessor indentation
authorPauli <paul.dale@oracle.com>
Thu, 9 Jan 2020 02:04:54 +0000 (12:04 +1000)
committerPauli <paul.dale@oracle.com>
Sun, 19 Jan 2020 00:14:39 +0000 (10:14 +1000)
Reviewed-by: Matt Caswell <matt@openssl.org>
(Merged from https://github.com/openssl/openssl/pull/10791)

include/openssl/sha.h

index be27e2c972427423b99fdc8c7f801936c6dc81a9..3a31bb606b017d9d627d528d35050610ca084f92 100644 (file)
@@ -19,9 +19,9 @@
 # include <openssl/e_os2.h>
 # include <stddef.h>
 
-#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