aboutsummaryrefslogtreecommitdiffstats
path: root/crypto/sha/sha_locl.h
diff options
context:
space:
mode:
authorBen Laurie <ben@openssl.org>1999-09-06 09:29:29 +0000
committerBen Laurie <ben@openssl.org>1999-09-06 09:29:29 +0000
commit232616efce79504eb0a950ff45960049ed92f230 (patch)
tree89ac372f1a532a4e34eb34c6e24bd9dcb13b6ae0 /crypto/sha/sha_locl.h
parenta32640b0f4c681c69c97def95c3e7995c80c77f3 (diff)
downloadopenssl-232616efce79504eb0a950ff45960049ed92f230.tar.gz
Fix warnings.
Diffstat (limited to 'crypto/sha/sha_locl.h')
-rw-r--r--crypto/sha/sha_locl.h12
1 files changed, 6 insertions, 6 deletions
diff --git a/crypto/sha/sha_locl.h b/crypto/sha/sha_locl.h
index 6f64e57627..80e70f046f 100644
--- a/crypto/sha/sha_locl.h
+++ b/crypto/sha/sha_locl.h
@@ -74,12 +74,12 @@
#define HASH_CBLOCK SHA_CBLOCK
#define HASH_LBLOCK SHA_LBLOCK
#define HASH_MAKE_STRING(c,s) do { \
- unsigned long l; \
- l=(c)->h0; HOST_l2c(l,(s)); \
- l=(c)->h1; HOST_l2c(l,(s)); \
- l=(c)->h2; HOST_l2c(l,(s)); \
- l=(c)->h3; HOST_l2c(l,(s)); \
- l=(c)->h4; HOST_l2c(l,(s)); \
+ unsigned long ll; \
+ ll=(c)->h0; HOST_l2c(ll,(s)); \
+ ll=(c)->h1; HOST_l2c(ll,(s)); \
+ ll=(c)->h2; HOST_l2c(ll,(s)); \
+ ll=(c)->h3; HOST_l2c(ll,(s)); \
+ ll=(c)->h4; HOST_l2c(ll,(s)); \
} while (0)
#if defined(SHA_0)