pajoye Mon, 06 Sep 2010 10:28:04 +0000 Revision: http://svn.php.net/viewvc?view=revision&revision=303067
Log: - kill warning Changed paths: U php/php-src/branches/PHP_5_3/ext/standard/proc_open.c U php/php-src/trunk/ext/standard/proc_open.c Modified: php/php-src/branches/PHP_5_3/ext/standard/proc_open.c =================================================================== --- php/php-src/branches/PHP_5_3/ext/standard/proc_open.c 2010-09-06 06:44:28 UTC (rev 303066) +++ php/php-src/branches/PHP_5_3/ext/standard/proc_open.c 2010-09-06 10:28:04 UTC (rev 303067) @@ -205,7 +205,7 @@ } } - assert(p - env.envp <= sizeenv); + assert((uint)(p - env.envp) <= sizeenv); zend_hash_internal_pointer_reset_ex(target_hash, &pos); Modified: php/php-src/trunk/ext/standard/proc_open.c =================================================================== --- php/php-src/trunk/ext/standard/proc_open.c 2010-09-06 06:44:28 UTC (rev 303066) +++ php/php-src/trunk/ext/standard/proc_open.c 2010-09-06 10:28:04 UTC (rev 303067) @@ -177,7 +177,7 @@ } } - assert(p - env.envp <= sizeenv); + assert((uint)(p - env.envp) <= sizeenv); zend_hash_internal_pointer_reset_ex(target_hash, &pos);
-- PHP CVS Mailing List (http://www.php.net/) To unsubscribe, visit: http://www.php.net/unsub.php