summaryrefslogtreecommitdiffstats
path: root/crypto/md4/md4_locl.h
diff options
context:
space:
mode:
authorBen Laurie <ben@links.org>2013-01-13 21:04:39 +0000
committerBen Laurie <ben@links.org>2013-01-13 21:04:39 +0000
commit08e55364454f402777a49ab387c82acce383674d (patch)
treebb01e3e4441f36ddc42e5f1e5e29e150616868a0 /crypto/md4/md4_locl.h
parente54e1235498ec2f9fb4f155a4679eaa6a3d24b63 (diff)
Fix some clang warnings.
Diffstat (limited to 'crypto/md4/md4_locl.h')
-rw-r--r--crypto/md4/md4_locl.h8
1 files changed, 4 insertions, 4 deletions
diff --git a/crypto/md4/md4_locl.h b/crypto/md4/md4_locl.h
index c8085b0ead..99c3e5004c 100644
--- a/crypto/md4/md4_locl.h
+++ b/crypto/md4/md4_locl.h
@@ -77,10 +77,10 @@ void md4_block_data_order (MD4_CTX *c, const void *p,size_t num);
#define HASH_FINAL MD4_Final
#define HASH_MAKE_STRING(c,s) do { \
unsigned long ll; \
- ll=(c)->A; HOST_l2c(ll,(s)); \
- ll=(c)->B; HOST_l2c(ll,(s)); \
- ll=(c)->C; HOST_l2c(ll,(s)); \
- ll=(c)->D; HOST_l2c(ll,(s)); \
+ ll=(c)->A; (void)HOST_l2c(ll,(s)); \
+ ll=(c)->B; (void)HOST_l2c(ll,(s)); \
+ ll=(c)->C; (void)HOST_l2c(ll,(s)); \
+ ll=(c)->D; (void)HOST_l2c(ll,(s)); \
} while (0)
#define HASH_BLOCK_DATA_ORDER md4_block_data_order