diff options
author | Ben Laurie <ben@links.org> | 2013-01-13 22:04:39 +0100 |
---|---|---|
committer | Ben Laurie <ben@links.org> | 2013-01-13 22:04:39 +0100 |
commit | 08e55364454f402777a49ab387c82acce383674d (patch) | |
tree | bb01e3e4441f36ddc42e5f1e5e29e150616868a0 /crypto/md5 | |
parent | Correct EVP_PKEY_verifyrecover to EVP_PKEY_verify_recover (RT 2955). (diff) | |
download | openssl-08e55364454f402777a49ab387c82acce383674d.tar.xz openssl-08e55364454f402777a49ab387c82acce383674d.zip |
Fix some clang warnings.
Diffstat (limited to 'crypto/md5')
-rw-r--r-- | crypto/md5/md5_locl.h | 8 |
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 |