summaryrefslogtreecommitdiff
path: root/ext
diff options
context:
space:
mode:
authorPierre Joye <pajoye@php.net>2010-09-06 10:28:04 +0000
committerPierre Joye <pajoye@php.net>2010-09-06 10:28:04 +0000
commit6c08709bd6d86f1a654ac6ff0f235ed863f67d6f (patch)
tree5611be24882252b36c0fc3758602de6a443ee1b5 /ext
parent329cab2942fa0349b357cb87db0ec3f5b41ee427 (diff)
downloadphp-git-6c08709bd6d86f1a654ac6ff0f235ed863f67d6f.tar.gz
- kill warning
Diffstat (limited to 'ext')
-rw-r--r--ext/standard/proc_open.c2
1 files changed, 1 insertions, 1 deletions
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);