aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorAndy Polyakov <appro@openssl.org>2015-01-20 15:49:55 +0100
committerMatt Caswell <matt@openssl.org>2015-01-22 09:50:31 +0000
commitdd7ad2c53d9fb6c37e7688a3933843026b59625b (patch)
tree2ddbacc05c794bf19d81ca2fd3b595a3f9a14bd8
parent366b193f8985a925ba446ba0296c02841578a9eb (diff)
downloadopenssl-dd7ad2c53d9fb6c37e7688a3933843026b59625b.tar.gz
crypto/cryptlib.c: make it indent-friendly.
Conflicts: crypto/cryptlib.c Reviewed-by: Tim Hudson <tjh@openssl.org>
-rw-r--r--crypto/cryptlib.c6
1 files changed, 4 insertions, 2 deletions
diff --git a/crypto/cryptlib.c b/crypto/cryptlib.c
index 64d9793aba..b3710c54e0 100644
--- a/crypto/cryptlib.c
+++ b/crypto/cryptlib.c
@@ -270,7 +270,8 @@ int CRYPTO_add_lock(int *pointer, int amount, int type, const char *file,
#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; }
@@ -460,7 +461,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);