summaryrefslogtreecommitdiff
path: root/crypto/cryptlib.c
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:35:20 +0000
commitf9189b79bf9f4c070a831577c26b7f970d2f7aec (patch)
treea61373b2a840b94b080e90980fbb77e47d7e782c /crypto/cryptlib.c
parentd68e7df7ab7dd23f7f0de20883b3b9433420127b (diff)
downloadopenssl-new-f9189b79bf9f4c070a831577c26b7f970d2f7aec.tar.gz
crypto/cryptlib.c: make it indent-friendly.
Conflicts: crypto/cryptlib.c Reviewed-by: Tim Hudson <tjh@openssl.org>
Diffstat (limited to 'crypto/cryptlib.c')
-rw-r--r--crypto/cryptlib.c6
1 files changed, 4 insertions, 2 deletions
diff --git a/crypto/cryptlib.c b/crypto/cryptlib.c
index 0b77d8b7d0..6204e52660 100644
--- a/crypto/cryptlib.c
+++ b/crypto/cryptlib.c
@@ -663,7 +663,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 int OPENSSL_ia32cap_P[2];
unsigned long *OPENSSL_ia32cap_loc(void)
@@ -841,7 +842,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);