Welcome to mirror list, hosted at ThFree Co, Russian Federation.

github.com/mono/boringssl.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorAlex Chernyakhovsky <achernya@google.com>2014-08-04 00:21:43 +0400
committerAdam Langley <agl@google.com>2014-08-05 00:28:25 +0400
commita59fbb0eddf6eb129ab994a5331bf77ab8721eb0 (patch)
treebfd80333d080050cf5e730a22fee365d27571b42 /crypto/digest
parent6ccf29012c4a31cb104e34ce3d7798f8914272cf (diff)
Correct endif comment in md32_common.h
PEDANTIC was not closed, but rather the compiler being used. Change-Id: I743118f1481adddcd163406be72926fff6c87338 Reviewed-on: https://boringssl-review.googlesource.com/1388 Reviewed-by: Adam Langley <agl@google.com>
Diffstat (limited to 'crypto/digest')
-rw-r--r--crypto/digest/md32_common.h4
1 files changed, 2 insertions, 2 deletions
diff --git a/crypto/digest/md32_common.h b/crypto/digest/md32_common.h
index d9e84324..c7d5da28 100644
--- a/crypto/digest/md32_common.h
+++ b/crypto/digest/md32_common.h
@@ -169,8 +169,8 @@ extern "C" {
: "cc"); \
ret; \
})
-# endif
-#endif /* PEDANTIC */
+# endif /* OPENSSL_X86 || OPENSSL_X86_64 */
+# endif /* COMPILER */
#ifndef ROTATE
#define ROTATE(a,n) (((a)<<(n))|(((a)&0xffffffff)>>(32-(n))))