From: Pauli Date: Wed, 8 Jan 2020 02:50:56 +0000 (+1000) Subject: whirlpool: fix preprocessor indentation X-Git-Tag: openssl-3.0.0-alpha1~701 X-Git-Url: https://git.librecmc.org/?a=commitdiff_plain;h=c52ec197aae43e624702a79cdbb73a1d2c7c9d09;p=oweals%2Fopenssl.git whirlpool: fix preprocessor indentation Reviewed-by: Matt Caswell Reviewed-by: Tomas Mraz (Merged from https://github.com/openssl/openssl/pull/10779) --- 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