kalle                                    Thu, 23 Sep 2010 03:33:36 +0000

Revision: http://svn.php.net/viewvc?view=revision&revision=303702

Log:
Fixed signedness compiler warning

Changed paths:
    U   php/php-src/trunk/ext/hash/hash_tiger.c

Modified: php/php-src/trunk/ext/hash/hash_tiger.c
===================================================================
--- php/php-src/trunk/ext/hash/hash_tiger.c     2010-09-23 02:10:26 UTC (rev 
303701)
+++ php/php-src/trunk/ext/hash/hash_tiger.c     2010-09-23 03:33:36 UTC (rev 
303702)
@@ -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]; \

-- 
PHP CVS Mailing List (http://www.php.net/)
To unsubscribe, visit: http://www.php.net/unsub.php

Reply via email to