aboutsummaryrefslogtreecommitdiff
path: root/src/nvim/event
diff options
context:
space:
mode:
authordundargoc <33953936+dundargoc@users.noreply.github.com>2022-10-21 16:26:54 +0200
committerGitHub <noreply@github.com>2022-10-21 16:26:54 +0200
commitfa6556515f1d3b1e51ba9e2c84f0b575d69eef44 (patch)
tree91d74115f420dcf9313c6fa62e6f6dcd630aa7e2 /src/nvim/event
parent784e498c4a9c1f03266ced5ec3f55c3a6c94b80d (diff)
parenta11e96edfc2dec57be5773b6ce64a1323ce8431d (diff)
downloadrneovim-fa6556515f1d3b1e51ba9e2c84f0b575d69eef44.tar.gz
rneovim-fa6556515f1d3b1e51ba9e2c84f0b575d69eef44.tar.bz2
rneovim-fa6556515f1d3b1e51ba9e2c84f0b575d69eef44.zip
Merge pull request #20664 from dundargoc/refactor/uncrustify
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.