From: Ilia Alshanetsky Date: Fri, 24 Jan 2003 16:45:34 +0000 (+0000) Subject: Fixed compile warning. X-Git-Tag: PHP_5_0_dev_before_13561_fix~55 X-Git-Url: https://granicus.if.org/sourcecode?a=commitdiff_plain;h=6efe008598ecb705028e638adfe7f39dff6d6b15;p=php Fixed compile warning. --- 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