mirror of
https://github.com/php/php-src.git
synced 2024-12-01 13:54:10 +08:00
Merge branch 'PHP-7.3'
* PHP-7.3: Simplify assignment on 64-bit
This commit is contained in:
commit
3c4cf40064
@ -866,8 +866,7 @@ static int php_stdiop_set_option(php_stream *stream, int option, int value, void
|
||||
}
|
||||
|
||||
#if defined(_WIN64)
|
||||
sz.HighPart = (new_size >> 32);
|
||||
sz.LowPart = (new_size & 0xffffffff);
|
||||
sz.QuadPart = new_size;
|
||||
#else
|
||||
sz.HighPart = 0;
|
||||
sz.LowPart = new_size;
|
||||
|
Loading…
Reference in New Issue
Block a user