From 18539c89eca8f6e272ead2b631365da530065ae7 Mon Sep 17 00:00:00 2001 From: Peter Hutterer Date: Fri, 2 Dec 2011 08:51:04 +1000 Subject: [PATCH] include: a new list element does not need initialization, state so Signed-off-by: Peter Hutterer Reviewed-by: Chase Douglas --- include/list.h | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/include/list.h b/include/list.h index 733a579c0..677fd9232 100644 --- a/include/list.h +++ b/include/list.h @@ -141,7 +141,8 @@ __list_add(struct list *entry, } /** - * Insert a new element after the given list head. + * Insert a new element after the given list head. The new element does not + * need to be initialised as empty list. * The list changes from: * head → some element → ... * to