diff options
Diffstat (limited to 'ext/standard/proc_open.c')
-rw-r--r-- | ext/standard/proc_open.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/ext/standard/proc_open.c b/ext/standard/proc_open.c index fc58b9f7b8..8f79fffdf8 100644 --- a/ext/standard/proc_open.c +++ b/ext/standard/proc_open.c @@ -417,7 +417,7 @@ struct php_proc_open_descriptor_item { PHP_FUNCTION(proc_open) { char *command, *cwd=NULL; - int command_len, cwd_len = 0; + size_t command_len, cwd_len = 0; zval *descriptorspec; zval *pipes; zval *environment = NULL; |