From: Bodo Möller Date: Fri, 14 May 1999 11:47:29 +0000 (+0000) Subject: Change cast in function calls to that which is, I think, the right X-Git-Tag: OpenSSL_0_9_3beta1~77 X-Git-Url: https://git.openssl.org/?p=openssl.git;a=commitdiff_plain;h=dbd1e384828d002a040ebb8486b0a13444fa1602 Change cast in function calls to that which is, I think, the right one for those functions (is it?). --- 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 }