aboutsummaryrefslogtreecommitdiff
path: root/src/nvim/lib/queue.h
diff options
context:
space:
mode:
authorJustin M. Keyes <justinkz@gmail.com>2021-10-19 06:51:42 -0700
committerGitHub <noreply@github.com>2021-10-19 06:51:42 -0700
commitaac15cf4ade5cb67000abe171ff8e2060b78907e (patch)
treecc91a6759c739044a5a338bc938cfa033d7273ac /src/nvim/lib/queue.h
parent29b718d04c474433977e952ac7f3561041f3bda0 (diff)
parent6059784770c4c88fb6fe528b9f7634192fa1164e (diff)
downloadrneovim-aac15cf4ade5cb67000abe171ff8e2060b78907e.tar.gz
rneovim-aac15cf4ade5cb67000abe171ff8e2060b78907e.tar.bz2
rneovim-aac15cf4ade5cb67000abe171ff8e2060b78907e.zip
Merge #16000 refactor: uncrustify
Diffstat (limited to 'src/nvim/lib/queue.h')
-rw-r--r--src/nvim/lib/queue.h4
1 files changed, 1 insertions, 3 deletions
diff --git a/src/nvim/lib/queue.h b/src/nvim/lib/queue.h
index bc4e9c4a82..871f49c863 100644
--- a/src/nvim/lib/queue.h
+++ b/src/nvim/lib/queue.h
@@ -1,5 +1,3 @@
-// uncrustify:off
-
// Queue implemented by circularly-linked list.
//
// Adapted from libuv. Simpler and more efficient than klist.h for implementing
@@ -43,7 +41,7 @@ typedef struct _queue {
while((q) != (h)) { \
QUEUE *next = q->next; \
code \
- (q) = next; \
+ (q) = next; \
}