diff --git a/[refs] b/[refs] index ee43299f61df..7989c7ddbf4f 100644 --- a/[refs] +++ b/[refs] @@ -1,2 +1,2 @@ --- -refs/heads/master: 23a5dfdad22a574d19d7cc19b391f9ce0d3c2f21 +refs/heads/master: 21ca352b71ca252e1933b1538fe89da8a04395c3 diff --git a/trunk/scripts/kconfig/list.h b/trunk/scripts/kconfig/list.h index ea1d58119d20..685d80e1bb0e 100644 --- a/trunk/scripts/kconfig/list.h +++ b/trunk/scripts/kconfig/list.h @@ -125,7 +125,7 @@ static inline void __list_del(struct list_head *prev, struct list_head *next) static inline void list_del(struct list_head *entry) { __list_del(entry->prev, entry->next); - entry->next = LIST_POISON1; - entry->prev = LIST_POISON2; + entry->next = (struct list_head*)LIST_POISON1; + entry->prev = (struct list_head*)LIST_POISON2; } #endif