From: Sam Ding Date: Tue, 23 Jan 2018 21:46:55 +0000 (-0500) Subject: fixed Big_endian issue on s390x for stream test cases X-Git-Tag: php-7.2.3RC1~33 X-Git-Url: https://granicus.if.org/sourcecode?a=commitdiff_plain;h=a8c6b36d62b1a58be68a1e50ee4113351f1845e4;p=php fixed Big_endian issue on s390x for stream test cases --- diff --git a/ext/standard/streamsfuncs.c b/ext/standard/streamsfuncs.c index 094f3c6b45..86c07c3ac7 100644 --- a/ext/standard/streamsfuncs.c +++ b/ext/standard/streamsfuncs.c @@ -1627,7 +1627,7 @@ PHP_FUNCTION(stream_isatty) { zval *zsrc; php_stream *stream; - zend_long fileno; + php_socket_t fileno; ZEND_PARSE_PARAMETERS_START(1, 1) Z_PARAM_RESOURCE(zsrc)