aboutsummaryrefslogtreecommitdiff
path: root/src/nvim/event
diff options
context:
space:
mode:
authordundargoc <gocdundar@gmail.com>2022-10-14 17:04:28 +0200
committerdundargoc <gocdundar@gmail.com>2022-10-21 16:23:32 +0200
commit6ff245732a5a8ab821598a38fb0c5805e6bd3779 (patch)
tree93b795042ae973ccab7301c0dde68ce9fa07b122 /src/nvim/event
parentb967cb2e03d32e7e525592049ca7f4f92413188c (diff)
downloadrneovim-6ff245732a5a8ab821598a38fb0c5805e6bd3779.tar.gz
rneovim-6ff245732a5a8ab821598a38fb0c5805e6bd3779.tar.bz2
rneovim-6ff245732a5a8ab821598a38fb0c5805e6bd3779.zip
refactor(uncrustify): improved formatting rules
Diffstat (limited to 'src/nvim/event')
-rw-r--r--src/nvim/event/stream.h3
1 files changed, 1 insertions, 2 deletions
diff --git a/src/nvim/event/stream.h b/src/nvim/event/stream.h
index b580d3c33d..f2858f0b6d 100644
--- a/src/nvim/event/stream.h
+++ b/src/nvim/event/stream.h
@@ -16,8 +16,7 @@ typedef struct stream Stream;
/// @param count Number of bytes that was read.
/// @param data User-defined data
/// @param eof If the stream reached EOF.
-typedef void (*stream_read_cb)(Stream *stream, RBuffer *buf, size_t count,
- void *data, bool eof);
+typedef void (*stream_read_cb)(Stream *stream, RBuffer *buf, size_t count, void *data, bool eof);
/// Type of function called when the Stream has information about a write
/// request.