From c42206e4a79b4957eaa2ae8126a9912159890f1a Mon Sep 17 00:00:00 2001 From: Sami Kerola Date: Sun, 10 Jun 2012 11:09:08 +0200 Subject: include: fix spurious list.h warnings include/list.h:224:17: warning: ISO C forbids omitting the middle term of a ?: expression [-pedantic] include/list.h:255:19: warning: ISO C forbids omitting the middle term of a ?: expression [-pedantic] Compilation warned about that at least 110 times. Signed-off-by: Sami Kerola --- include/list.h | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) (limited to 'include/list.h') diff --git a/include/list.h b/include/list.h index d8c3bf018..1824af05d 100644 --- a/include/list.h +++ b/include/list.h @@ -221,7 +221,7 @@ _INLINE_ struct list_head *merge(int (*cmp)(struct list_head *a, } tail = tail->next; } - tail->next = a?:b; + tail->next = a ? a : b; return head.next; } @@ -252,7 +252,7 @@ _INLINE_ void merge_and_restore_back_links(int (*cmp)(struct list_head *a, } tail = tail->next; } - tail->next = a ? : b; + tail->next = a ? a : b; do { /* -- cgit v1.2.3-55-g7522