aboutsummaryrefslogtreecommitdiffstats
path: root/crypto/md5
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/md5
parente54e1235498ec2f9fb4f155a4679eaa6a3d24b63 (diff)
downloadopenssl-08e55364454f402777a49ab387c82acce383674d.tar.gz
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 37e43fe428..432f523c7e 100644
--- a/crypto/md5/md5_locl.h
+++ b/crypto/md5/md5_locl.h
@@ -88,10 +88,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