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 <kerolasa@iki.fi>
This commit is contained in:
Sami Kerola 2012-06-10 11:09:08 +02:00
parent 7244ad8c09
commit c42206e4a7
1 changed files with 2 additions and 2 deletions

View File

@ -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 {
/*