crypto/cryptlib.c: make it indent-friendly.
authorAndy Polyakov <appro@openssl.org>
Tue, 20 Jan 2015 14:49:55 +0000 (15:49 +0100)
committerMatt Caswell <matt@openssl.org>
Thu, 22 Jan 2015 09:50:31 +0000 (09:50 +0000)
Conflicts:
crypto/cryptlib.c

Reviewed-by: Tim Hudson <tjh@openssl.org>
crypto/cryptlib.c

index 64d9793aba89ef480c714c05d941bd526d203282..b3710c54e02df90e171aae6fb71aa0fb3ba3f007 100644 (file)
@@ -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);