From c52ec197aae43e624702a79cdbb73a1d2c7c9d09 Mon Sep 17 00:00:00 2001 From: Pauli Date: Wed, 8 Jan 2020 12:50:56 +1000 Subject: [PATCH] whirlpool: fix preprocessor indentation Reviewed-by: Matt Caswell Reviewed-by: Tomas Mraz (Merged from https://github.com/openssl/openssl/pull/10779) --- include/openssl/whrlpool.h | 20 ++++++++++---------- 1 file changed, 10 insertions(+), 10 deletions(-) diff --git a/include/openssl/whrlpool.h b/include/openssl/whrlpool.h index 83f34288e4..89adca6f73 100644 --- a/include/openssl/whrlpool.h +++ b/include/openssl/whrlpool.h @@ -16,18 +16,18 @@ # define HEADER_WHRLPOOL_H # endif -#include +# include # ifndef OPENSSL_NO_WHIRLPOOL -# include -# include -# ifdef __cplusplus +# include +# include +# ifdef __cplusplus extern "C" { -# endif +# endif -# define WHIRLPOOL_DIGEST_LENGTH (512/8) -# define WHIRLPOOL_BBLOCK 512 -# define WHIRLPOOL_COUNTER (256/8) +# define WHIRLPOOL_DIGEST_LENGTH (512/8) +# define WHIRLPOOL_BBLOCK 512 +# define WHIRLPOOL_COUNTER (256/8) typedef struct { union { @@ -46,9 +46,9 @@ void WHIRLPOOL_BitUpdate(WHIRLPOOL_CTX *c, const void *inp, size_t bits); int WHIRLPOOL_Final(unsigned char *md, WHIRLPOOL_CTX *c); unsigned char *WHIRLPOOL(const void *inp, size_t bytes, unsigned char *md); -# ifdef __cplusplus +# ifdef __cplusplus } -# endif +# endif # endif #endif -- 2.25.1