mirror of
https://github.com/php/php-src.git
synced 2026-03-24 00:02:20 +01:00
Added parentheses
This commit is contained in:
@@ -413,7 +413,7 @@ END_EXTERN_C()
|
||||
/* whether or not locking is supported */
|
||||
#define PHP_STREAM_LOCK_SUPPORTED 1
|
||||
|
||||
#define php_stream_supports_lock(stream) _php_stream_set_option((stream), PHP_STREAM_OPTION_LOCKING, 0, (void *) PHP_STREAM_LOCK_SUPPORTED) == 0 ? 1 : 0
|
||||
#define php_stream_supports_lock(stream) (_php_stream_set_option((stream), PHP_STREAM_OPTION_LOCKING, 0, (void *) PHP_STREAM_LOCK_SUPPORTED) == 0 ? 1 : 0)
|
||||
#define php_stream_lock(stream, mode) _php_stream_set_option((stream), PHP_STREAM_OPTION_LOCKING, (mode), (void *) NULL)
|
||||
|
||||
/* option code used by the php_stream_xport_XXX api */
|
||||
|
||||
Reference in New Issue
Block a user