From: David Walker Date: Wed, 6 Jul 2016 12:54:51 +0000 (-0600) Subject: change long to zend_long, for uniformity X-Git-Tag: php-7.1.0beta1~160 X-Git-Url: https://granicus.if.org/sourcecode?a=commitdiff_plain;h=90e326c620236927993bb3f19594e01f199f450a;p=php change long to zend_long, for uniformity --- diff --git a/ext/pcntl/pcntl.c b/ext/pcntl/pcntl.c index 67168868b7..a78336ac89 100644 --- a/ext/pcntl/pcntl.c +++ b/ext/pcntl/pcntl.c @@ -1047,7 +1047,7 @@ PHP_FUNCTION(pcntl_signal_get_handler) if ((prev_handle = zend_hash_index_find(&PCNTL_G(php_signal_table), signo)) != NULL) { RETURN_ZVAL(prev_handle, 1, 0); } else { - RETURN_LONG((long)SIG_DFL); + RETURN_LONG((zend_long)SIG_DFL); } }