8000 Fix x64 build · php/php-src@694e207 · GitHub
[go: up one dir, main page]

Skip to content

Commit 694e207

Browse files
committed
Fix x64 build
1 parent 2f05643 commit 694e207

File tree

1 file changed

+4
-0
lines changed

1 file changed

+4
-0
lines changed

ext/standard/streamsfuncs.c

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1643,7 +1643,11 @@ PHP_FUNCTION(stream_vt100_support)
16431643
{
16441644
zval *z_stream;
16451645
php_stream *stream;
1646+
#ifdef _WIN64
1647+
long long fileno;
1648+
#else
16461649
int fileno;
1650+
#endif
16471651
zend_bool enable;
16481652
#ifdef PHP_WIN32
16491653
DWORD handle_id;

0 commit comments

Comments
 (0)
0