diff options
author | Felix Buehler <account@buehler.rocks> | 2018-07-08 13:59:21 +0200 |
---|---|---|
committer | Felix Buehler <account@buehler.rocks> | 2018-07-13 15:11:43 +0200 |
commit | d099a907f6d8255a0d41e1e3fb476722f3ff2673 (patch) | |
tree | 5cc051a32a8397fa07e5b137fe63c60f98059070 /include/queue.h | |
parent | a40d7d928f2a24dcb4b9eeae0997f143f4651191 (diff) |
fix clang errors
Diffstat (limited to 'include/queue.h')
-rw-r--r-- | include/queue.h | 5 |
1 files changed, 4 insertions, 1 deletions
diff --git a/include/queue.h b/include/queue.h index 3092aad..5b449ab 100644 --- a/include/queue.h +++ b/include/queue.h @@ -433,7 +433,10 @@ } #define CIRCLEQ_HEAD_INITIALIZER(head) \ - { CIRCLEQ_END(&head), CIRCLEQ_END(&head) } + { \ + CIRCLEQ_END(&head) \ + , CIRCLEQ_END(&head) \ + } #define CIRCLEQ_ENTRY(type) \ struct { \ |