aboutsummaryrefslogtreecommitdiffstats
path: root/crypto/md32_common.h
diff options
context:
space:
mode:
authorBodo Möller <bodo@openssl.org>1999-05-14 11:47:29 +0000
committerBodo Möller <bodo@openssl.org>1999-05-14 11:47:29 +0000
commitdbd1e384828d002a040ebb8486b0a13444fa1602 (patch)
treefe2f0afed924b8655b36f117d75205dea1454e13 /crypto/md32_common.h
parent1b24cca96976893ef8e45ceef6f96a99aefd0895 (diff)
downloadopenssl-dbd1e384828d002a040ebb8486b0a13444fa1602.tar.gz
Change cast in function calls to that which is, I think, the right
one for those functions (is it?).
Diffstat (limited to 'crypto/md32_common.h')
-rw-r--r--crypto/md32_common.h4
1 files changed, 2 insertions, 2 deletions
diff --git a/crypto/md32_common.h b/crypto/md32_common.h
index 977ea8e73b..4270862d68 100644
--- a/crypto/md32_common.h
+++ b/crypto/md32_common.h
@@ -486,7 +486,7 @@ void HASH_UPDATE (HASH_CTX *c, const unsigned char *data, unsigned long len)
#endif
#if defined(HASH_BLOCK_DATA_ORDER)
{
- HASH_BLOCK_DATA_ORDER (c,(HASH_LONG *)data,sw);
+ HASH_BLOCK_DATA_ORDER(c,(const unsigned char *)data,sw);
sw*=HASH_CBLOCK;
data+=sw;
len-=sw;
@@ -524,7 +524,7 @@ void HASH_TRANSFORM (HASH_CTX *c, unsigned char *data)
#endif
#endif
#if defined(HASH_BLOCK_DATA_ORDER)
- HASH_BLOCK_DATA_ORDER (c,(HASH_LONG *)data,1);
+ HASH_BLOCK_DATA_ORDER (c,(const unsigned char *)data,1);
#endif
}