diff options
author | Ben Laurie <ben@openssl.org> | 2000-02-16 13:09:17 +0100 |
---|---|---|
committer | Ben Laurie <ben@openssl.org> | 2000-02-16 13:09:17 +0100 |
commit | bd44570322940cf1d1e01ad27c9e1949806a06cd (patch) | |
tree | 66a398cee6044bacb5e87c4e5792f8fd7983de23 /crypto/md32_common.h | |
parent | Install manpages below OPENSSLDIR (I think it was meant to be this way?). (diff) | |
download | openssl-bd44570322940cf1d1e01ad27c9e1949806a06cd.tar.xz openssl-bd44570322940cf1d1e01ad27c9e1949806a06cd.zip |
Fix signed/unsigned warnings.
Diffstat (limited to 'crypto/md32_common.h')
-rw-r--r-- | crypto/md32_common.h | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/crypto/md32_common.h b/crypto/md32_common.h index d7c0084c4e..1a404a458d 100644 --- a/crypto/md32_common.h +++ b/crypto/md32_common.h @@ -410,8 +410,9 @@ * Time for some action:-) */ -void HASH_UPDATE (HASH_CTX *c, const unsigned char *data, unsigned long len) +void HASH_UPDATE (HASH_CTX *c, const void *data_, unsigned long len) { + const unsigned char *data=data_; register HASH_LONG * p; register unsigned long l; int sw,sc,ew,ec; |