summaryrefslogtreecommitdiff
path: root/ext/hash/php_hash_tiger.h
diff options
context:
space:
mode:
authorKalle Sommer Nielsen <kalle@php.net>2018-10-03 11:32:57 +0200
committerKalle Sommer Nielsen <kalle@php.net>2018-10-03 11:32:57 +0200
commit84b0d0fabaaf21ee056984a33b573121296af942 (patch)
tree544b84cc972486b034c8d7b08be5a919c963604b /ext/hash/php_hash_tiger.h
parentf7991ca656bd5a08d37095a7c18159865a885a64 (diff)
downloadphp-git-84b0d0fabaaf21ee056984a33b573121296af942.tar.gz
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
Diffstat (limited to 'ext/hash/php_hash_tiger.h')
-rw-r--r--ext/hash/php_hash_tiger.h2
1 files changed, 1 insertions, 1 deletions
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);