commit | 1d0a0561806a966adfd31bc968c79a01888c34c5 | [log] [tgz] |
---|---|---|
author | Matt Braithwaite <mab@google.com> | Fri Jun 05 11:43:49 2015 -0700 |
committer | Adam Langley <agl@google.com> | Fri Jun 05 18:48:02 2015 +0000 |
tree | 6d05cc48833a3fe46a4838ba70ce45be4ff37057 | |
parent | 1043ac0fac8b6a7b0c82c5e7cca5afffc98d5b87 [diff] |
Explicitly cast |CHECK| result to |void| to avoid compiler complaint. Change-Id: Ie7b376da1a157d144e9c4651722630dbf9c45436 Reviewed-on: https://boringssl-review.googlesource.com/5021 Reviewed-by: Adam Langley <agl@google.com>
diff --git a/crypto/digest/digests.c b/crypto/digest/digests.c index f5eda36..cdcc6f1 100644 --- a/crypto/digest/digests.c +++ b/crypto/digest/digests.c
@@ -67,7 +67,7 @@ #include "internal.h" #if defined(NDEBUG) -#define CHECK(x) x +#define CHECK(x) (void) (x) #else #define CHECK(x) assert(x) #endif