diff options
| author | Sam Ding <samding@ca.ibm.com> | 2018-01-23 16:46:55 -0500 |
|---|---|---|
| committer | Anatol Belski <ab@php.net> | 2018-01-27 16:39:03 +0100 |
| commit | a8c6b36d62b1a58be68a1e50ee4113351f1845e4 (patch) | |
| tree | bc03036870693370319af31df8c6e2608959cbfa | |
| parent | 96595a232a7ad2031165152a2292ed3055507493 (diff) | |
| download | php-git-a8c6b36d62b1a58be68a1e50ee4113351f1845e4.tar.gz | |
fixed Big_endian issue on s390x for stream test cases
| -rw-r--r-- | ext/standard/streamsfuncs.c | 2 |
1 files changed, 1 insertions, 1 deletions
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) |
