From 1cb19803f0f8dfd1e0fb9d189afe2262e24a0be5 Mon Sep 17 00:00:00 2001 From: Peter Hutterer Date: Tue, 29 Jan 2013 12:51:15 +1000 Subject: [PATCH] include: fix typo in list description Signed-off-by: Peter Hutterer --- include/list.h | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/include/list.h b/include/list.h index 2d48a8646f..067c6794f1 100644 --- a/include/list.h +++ b/include/list.h @@ -358,7 +358,7 @@ xorg_list_is_empty(struct xorg_list *head) * struct foo *element = list; * while ((element = nt_list_next(element, next)) { } * - * This macro is not safe for node deletion. Use xorg_list_for_each_entry_safe + * This macro is not safe for node deletion. Use nt_list_for_each_entry_safe * instead. * * @param list The list or current element.