From: Pierre Joye Date: Mon, 6 Sep 2010 10:28:04 +0000 (+0000) Subject: - kill warning X-Git-Tag: php-5.3.4RC1~271 X-Git-Url: https://granicus.if.org/sourcecode?a=commitdiff_plain;h=6c08709bd6d86f1a654ac6ff0f235ed863f67d6f;p=php - kill warning --- diff --git a/ext/standard/proc_open.c b/ext/standard/proc_open.c index a822236feb..0b4f5e0f12 100644 --- a/ext/standard/proc_open.c +++ b/ext/standard/proc_open.c @@ -205,7 +205,7 @@ static php_process_env_t _php_array_to_envp(zval *environment, int is_persistent } } - assert(p - env.envp <= sizeenv); + assert((uint)(p - env.envp) <= sizeenv); zend_hash_internal_pointer_reset_ex(target_hash, &pos);