summaryrefslogtreecommitdiffstats
path: root/crypto/md5
diff options
context:
space:
mode:
authorBen Laurie <ben@links.org>2013-01-13 21:04:39 +0000
committerDr. Stephen Henson <steve@openssl.org>2013-01-14 00:22:28 +0000
commit72f27cd2df9b9444b2e95e4dd9f21cdfce8fd729 (patch)
treeb1196abd811e9818777a1b9fb00151b06e1dd373 /crypto/md5
parent9d75e765bcecf3eb5db95a88e1806437e82af154 (diff)
Fix some clang warnings.
Diffstat (limited to 'crypto/md5')
-rw-r--r--crypto/md5/md5_locl.h8
1 files changed, 4 insertions, 4 deletions
diff --git a/crypto/md5/md5_locl.h b/crypto/md5/md5_locl.h
index 968d577995..74d63d1f9c 100644
--- a/crypto/md5/md5_locl.h
+++ b/crypto/md5/md5_locl.h
@@ -86,10 +86,10 @@ void md5_block_data_order (MD5_CTX *c, const void *p,size_t num);
#define HASH_FINAL MD5_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 md5_block_data_order