From 84b0d0fabaaf21ee056984a33b573121296af942 Mon Sep 17 00:00:00 2001 From: Kalle Sommer Nielsen Date: Wed, 3 Oct 2018 11:32:57 +0200 Subject: Second round of fixing compiler warnings in ext/hash. Lots of the signatures that previously was unsigned int is now size_t, there was a fair bit of inconsistency there already and this commit should make it all sync nicely --- ext/hash/php_hash_tiger.h | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'ext/hash/php_hash_tiger.h') diff --git a/ext/hash/php_hash_tiger.h b/ext/hash/php_hash_tiger.h index ca60dd4eae..9f8bce7042 100644 --- a/ext/hash/php_hash_tiger.h +++ b/ext/hash/php_hash_tiger.h @@ -25,7 +25,7 @@ typedef struct { uint64_t passed; unsigned char buffer[64]; unsigned int passes:1; - unsigned int length:7; + size_t length; } PHP_TIGER_CTX; PHP_HASH_API void PHP_3TIGERInit(PHP_TIGER_CTX *context); -- cgit v1.2.1