From: Kalle Sommer Nielsen Date: Thu, 23 Sep 2010 03:33:36 +0000 (+0000) Subject: Fixed signedness compiler warning X-Git-Tag: php-5.4.0alpha1~191^2~900 X-Git-Url: https://granicus.if.org/sourcecode?a=commitdiff_plain;h=466c0b88d7a459ae2967ed1f72b790075fab4854;p=php Fixed signedness compiler warning --- 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]; \