From: Andy Polyakov Date: Wed, 21 Jan 2015 10:50:56 +0000 (+0100) Subject: bn/bn_asm.c: make it indent-friendly. X-Git-Tag: master-post-reformat~21 X-Git-Url: https://git.librecmc.org/?a=commitdiff_plain;h=7cc63545a3369e545b97b0fa80c7822472809038;p=oweals%2Fopenssl.git bn/bn_asm.c: make it indent-friendly. Reviewed-by: Tim Hudson --- diff --git a/crypto/bn/bn_asm.c b/crypto/bn/bn_asm.c index 5027a58320..543fc9dc45 100644 --- a/crypto/bn/bn_asm.c +++ b/crypto/bn/bn_asm.c @@ -443,7 +443,7 @@ BN_ULONG bn_sub_words(BN_ULONG *r, const BN_ULONG *a, const BN_ULONG *b, int n) * Keep in mind that additions to multiplication result can not * overflow, because its high half cannot be all-ones. */ -#define mul_add_c(a,b,c0,c1,c2) do { \ +# define mul_add_c(a,b,c0,c1,c2) do { \ BN_ULONG hi; \ BN_ULLONG t = (BN_ULLONG)(a)*(b); \ t += c0; /* no carry */ \ @@ -452,7 +452,7 @@ BN_ULONG bn_sub_words(BN_ULONG *r, const BN_ULONG *a, const BN_ULONG *b, int n) c1 = (c1+hi)&BN_MASK2; if (c1