summaryrefslogtreecommitdiff
path: root/ext/pcntl
diff options
context:
space:
mode:
authorNikita Popov <nikic@php.net>2014-08-25 22:47:04 +0200
committerNikita Popov <nikic@php.net>2014-08-25 22:47:04 +0200
commit28e7beea66760ca0c175ccd908a77429d122da00 (patch)
treefa02a3096616931f4f94704f6ed3bd9ba3ee036d /ext/pcntl
parent46b53e815c39bad6226cdc0ca6caa76cabeb09ef (diff)
downloadphp-git-28e7beea66760ca0c175ccd908a77429d122da00.tar.gz
Fix zend_longo_str
Diffstat (limited to 'ext/pcntl')
-rw-r--r--ext/pcntl/pcntl.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/ext/pcntl/pcntl.c b/ext/pcntl/pcntl.c
index 206f0feaa4..30ffb309b3 100644
--- a/ext/pcntl/pcntl.c
+++ b/ext/pcntl/pcntl.c
@@ -788,7 +788,7 @@ PHP_FUNCTION(pcntl_exec)
ZEND_HASH_FOREACH_KEY_VAL(envs_hash, key_num, key, element) {
if (envi >= envc) break;
if (!key) {
- key = zend_longo_str(key_num);
+ key = zend_long_to_str(key_num);
} else {
zend_string_addref(key);
}