From: Andy Polyakov Date: Tue, 20 Jan 2015 14:49:55 +0000 (+0100) Subject: crypto/cryptlib.c: make it indent-friendly. X-Git-Tag: OpenSSL_1_0_0-post-reformat~33 X-Git-Url: https://git.librecmc.org/?a=commitdiff_plain;h=7a9f1f174c8a90713ea42750a230421252da1956;p=oweals%2Fopenssl.git crypto/cryptlib.c: make it indent-friendly. Conflicts: crypto/cryptlib.c Reviewed-by: Tim Hudson --- diff --git a/crypto/cryptlib.c b/crypto/cryptlib.c index 6705a3c6fb..096cfb19e2 100644 --- a/crypto/cryptlib.c +++ b/crypto/cryptlib.c @@ -659,7 +659,8 @@ const char *CRYPTO_get_lock_name(int type) #if defined(__i386) || defined(__i386__) || defined(_M_IX86) || \ defined(__INTEL__) || \ - defined(__x86_64) || defined(__x86_64__) || defined(_M_AMD64) || defined(_M_X64) + defined(__x86_64) || defined(__x86_64__) || \ + defined(_M_AMD64) || defined(_M_X64) unsigned long OPENSSL_ia32cap_P=0; unsigned long *OPENSSL_ia32cap_loc(void) { return &OPENSSL_ia32cap_P; } @@ -812,7 +813,8 @@ void OPENSSL_showfatal (const char *fmta,...) if ((h=GetStdHandle(STD_ERROR_HANDLE)) != NULL && GetFileType(h)!=FILE_TYPE_UNKNOWN) - { /* must be console application */ + { + /* must be console application */ va_start (ap,fmta); vfprintf (stderr,fmta,ap); va_end (ap);