diff options
Diffstat (limited to 'src/nvim/lib/queue.h')
-rw-r--r-- | src/nvim/lib/queue.h | 4 |
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; \ } |