diff options
| author | Kalle Sommer Nielsen <kalle@php.net> | 2010-09-23 03:33:36 +0000 |
|---|---|---|
| committer | Kalle Sommer Nielsen <kalle@php.net> | 2010-09-23 03:33:36 +0000 |
| commit | 466c0b88d7a459ae2967ed1f72b790075fab4854 (patch) | |
| tree | 2146083c060a123b21402c63f0128de6d26ef8a9 | |
| parent | 1af3e68880bac91c6e030209b0a138406e10d881 (diff) | |
| download | php-git-466c0b88d7a459ae2967ed1f72b790075fab4854.tar.gz | |
Fixed signedness compiler warning
| -rw-r--r-- | ext/hash/hash_tiger.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/ext/hash/hash_tiger.c b/ext/hash/hash_tiger.c index 98284fe072..0ded846cf6 100644 --- a/ext/hash/hash_tiger.c +++ b/ext/hash/hash_tiger.c @@ -120,7 +120,7 @@ { \ register php_hash_uint64 a, b, c, tmpa, x0, x1, x2, x3, x4, x5, x6, x7; \ php_hash_uint64 aa, bb, cc; \ - int pass_no; \ + unsigned int pass_no; \ \ a = state[0]; \ b = state[1]; \ |
