From bb6aa3ebd34abc594b239f9c7fcbdbb86b84be60 Mon Sep 17 00:00:00 2001 From: Antony Dovgal Date: Sat, 3 Dec 2005 23:31:14 +0000 Subject: [PATCH] fix #35538 (new "hash" extensions does not compile on amd64) --- ext/hash/php_hash_gost.h | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) 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 -- 2.40.0