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:
authorDavid Benjamin <davidben@chromium.org>2015-12-07 21:36:34 +0300
committerAdam Langley <agl@google.com>2015-12-16 23:02:37 +0300
commit793c21e266a0d6b5994a8f5cba9bac569fbd3bc7 (patch)
treebbd682b955fdd39ba34a24ee17f49b746a44f833 /crypto/md4
parent0aff3ffb8882a161de9550cc4ea8caacc713aadb (diff)
Make HOST_l2c return void.
Nothing ever uses the return value. It'd be better off discarding it rather than make callers stick (void) everywhere. Change-Id: Ia28c970a1e5a27db441e4511249589d74408849b Reviewed-on: https://boringssl-review.googlesource.com/6653 Reviewed-by: Adam Langley <agl@google.com>
Diffstat (limited to 'crypto/md4')
-rw-r--r--crypto/md4/md4.c8
1 files changed, 4 insertions, 4 deletions
diff --git a/crypto/md4/md4.c b/crypto/md4/md4.c
index 52296ebb..86a540b4 100644
--- a/crypto/md4/md4.c
+++ b/crypto/md4/md4.c
@@ -84,13 +84,13 @@ void md4_block_data_order(uint32_t *state, const uint8_t *data, size_t num);
do { \
uint32_t ll; \
ll = (c)->h[0]; \
- (void) HOST_l2c(ll, (s)); \
+ HOST_l2c(ll, (s)); \
ll = (c)->h[1]; \
- (void) HOST_l2c(ll, (s)); \
+ HOST_l2c(ll, (s)); \
ll = (c)->h[2]; \
- (void) HOST_l2c(ll, (s)); \
+ HOST_l2c(ll, (s)); \
ll = (c)->h[3]; \
- (void) HOST_l2c(ll, (s)); \
+ HOST_l2c(ll, (s)); \
} while (0)
#define HASH_BLOCK_DATA_ORDER md4_block_data_order