diff options
| author | Antony Dovgal <tony2001@php.net> | 2005-12-03 23:31:49 +0000 |
|---|---|---|
| committer | Antony Dovgal <tony2001@php.net> | 2005-12-03 23:31:49 +0000 |
| commit | 60af8a388cdc95840e7be9afe123b827b5579443 (patch) | |
| tree | 4e15b5085e23dabb8d014d4443e3fa13d9c10b46 | |
| parent | 58c6a0da276e97c799be57d54f27e68fb78f83d1 (diff) | |
| download | php-git-60af8a388cdc95840e7be9afe123b827b5579443.tar.gz | |
MF51: fix #35538 (new "hash" extensions does not compile on amd64)
| -rw-r--r-- | ext/hash/php_hash_gost.h | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/ext/hash/php_hash_gost.h b/ext/hash/php_hash_gost.h index ba9f63dab1..f0e6dffdf0 100644 --- a/ext/hash/php_hash_gost.h +++ b/ext/hash/php_hash_gost.h @@ -32,7 +32,7 @@ typedef struct { } PHP_GOST_CTX; PHP_HASH_API void PHP_GOSTInit(PHP_GOST_CTX *); -PHP_HASH_API void PHP_GOSTUpdate(PHP_GOST_CTX *, const unsigned char *, uint); +PHP_HASH_API void PHP_GOSTUpdate(PHP_GOST_CTX *, const unsigned char *, size_t); PHP_HASH_API void PHP_GOSTFinal(unsigned char[64], PHP_GOST_CTX *); #endif |
