From 6c08709bd6d86f1a654ac6ff0f235ed863f67d6f Mon Sep 17 00:00:00 2001 From: Pierre Joye Date: Mon, 6 Sep 2010 10:28:04 +0000 Subject: - kill warning --- ext/standard/proc_open.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'ext') 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); -- cgit v1.2.1