summaryrefslogtreecommitdiff
path: root/ext/standard/proc_open.c
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
commit75df1719bec279ea3e2fec68ff98ffc0295bc5a0 (patch)
treebe9f0225affed956dc38ca366be0926c54994836 /ext/standard/proc_open.c
parent84d1c12b929af91d78a03db73a33cadb8617cb44 (diff)
downloadphp-git-75df1719bec279ea3e2fec68ff98ffc0295bc5a0.tar.gz
- kill warning
Diffstat (limited to 'ext/standard/proc_open.c')
-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 7acd416f46..95740a1d91 100644
--- a/ext/standard/proc_open.c
+++ b/ext/standard/proc_open.c
@@ -177,7 +177,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);