diff options
author | Ilia Alshanetsky <iliaa@php.net> | 2003-01-24 16:45:34 +0000 |
---|---|---|
committer | Ilia Alshanetsky <iliaa@php.net> | 2003-01-24 16:45:34 +0000 |
commit | 6efe008598ecb705028e638adfe7f39dff6d6b15 (patch) | |
tree | 2ea2705f74714674b50e6b789e02126b357cc914 /ext/standard/proc_open.c | |
parent | d2162b32b1f19e7603f1522c7829f2ac279dac3a (diff) | |
download | php-git-6efe008598ecb705028e638adfe7f39dff6d6b15.tar.gz |
Fixed compile warning.
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 046581ebf1..7cca8a5ac4 100644 --- a/ext/standard/proc_open.c +++ b/ext/standard/proc_open.c @@ -216,7 +216,7 @@ PHP_FUNCTION(proc_get_status) array_init(return_value); add_assoc_string(return_value, "command", proc->command, 1); - add_assoc_long(return_value, "pid", proc->child); + add_assoc_long(return_value, "pid", (long) proc->child); #ifdef PHP_WIN32 |