diff options
| author | dundargoc <gocdundar@gmail.com> | 2023-12-28 13:42:24 +0100 |
|---|---|---|
| committer | dundargoc <33953936+dundargoc@users.noreply.github.com> | 2023-12-30 12:45:38 +0100 |
| commit | c89292fcb7f2ebf06efb7c1d00c28f34c6f68fec (patch) | |
| tree | b1257a572495337ca936c47839bb08aa45528c84 /src/nvim/event | |
| parent | d634cd5b0bc3ac6bdf285432f74a1c10f12b6031 (diff) | |
| download | rneovim-c89292fcb7f2ebf06efb7c1d00c28f34c6f68fec.tar.gz rneovim-c89292fcb7f2ebf06efb7c1d00c28f34c6f68fec.tar.bz2 rneovim-c89292fcb7f2ebf06efb7c1d00c28f34c6f68fec.zip | |
refactor: follow style guide
Diffstat (limited to 'src/nvim/event')
| -rw-r--r-- | src/nvim/event/multiqueue.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/nvim/event/multiqueue.c b/src/nvim/event/multiqueue.c index fd6f88153b..f1b4414cb5 100644 --- a/src/nvim/event/multiqueue.c +++ b/src/nvim/event/multiqueue.c @@ -156,7 +156,7 @@ void multiqueue_purge_events(MultiQueue *self) { assert(self); while (!multiqueue_empty(self)) { - (void)multiqueue_remove(self); + multiqueue_remove(self); } } |