summaryrefslogtreecommitdiff
path: root/ext/hash/php_hash_tiger.h
diff options
context:
space:
mode:
authorKalle Sommer Nielsen <kalle@php.net>2010-07-13 23:59:54 +0000
committerKalle Sommer Nielsen <kalle@php.net>2010-07-13 23:59:54 +0000
commitaeb1dc7cc4e43501b832bb120f1bebb7b254395e (patch)
treea906c64eb3de42928197db75a6e0e64aeb5ad03c /ext/hash/php_hash_tiger.h
parentfcb098499159b50421c58817177a69543a2b5205 (diff)
downloadphp-git-aeb1dc7cc4e43501b832bb120f1bebb7b254395e.tar.gz
Fixed bug #51943 (Several files are out of ANSI spec)
# Based on patch by CoreyStup at gmail dot com
Diffstat (limited to 'ext/hash/php_hash_tiger.h')
-rw-r--r--ext/hash/php_hash_tiger.h4
1 files changed, 2 insertions, 2 deletions
diff --git a/ext/hash/php_hash_tiger.h b/ext/hash/php_hash_tiger.h
index 74ae2a97a9..8a8dc7011e 100644
--- a/ext/hash/php_hash_tiger.h
+++ b/ext/hash/php_hash_tiger.h
@@ -25,8 +25,8 @@
typedef struct {
php_hash_uint64 state[3];
php_hash_uint64 passed;
- unsigned char passes:1;
- unsigned char length:7;
+ unsigned int passes:1;
+ unsigned int length:7;
unsigned char buffer[64];
} PHP_TIGER_CTX;