diff options
Diffstat (limited to 'src/nvim/event/stream.c')
-rw-r--r-- | src/nvim/event/stream.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/nvim/event/stream.c b/src/nvim/event/stream.c index 8569b92d56..b34fd73d52 100644 --- a/src/nvim/event/stream.c +++ b/src/nvim/event/stream.c @@ -20,7 +20,7 @@ // For compatibility with libuv < 1.19.0 (tested on 1.18.0) #if UV_VERSION_MINOR < 19 -#define uv_stream_get_write_queue_size(stream) stream->write_queue_size +# define uv_stream_get_write_queue_size(stream) stream->write_queue_size #endif /// Sets the stream associated with `fd` to "blocking" mode. |