summaryrefslogtreecommitdiff
path: root/src
diff options
context:
space:
mode:
Diffstat (limited to 'src')
-rw-r--r--src/xine-utils/list.h4
1 files changed, 2 insertions, 2 deletions
diff --git a/src/xine-utils/list.h b/src/xine-utils/list.h
index 9b9506a84..8273d30f1 100644
--- a/src/xine-utils/list.h
+++ b/src/xine-utils/list.h
@@ -17,7 +17,7 @@
* along with this program; if not, write to the Free Software
* Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA
*
- * $Id: list.h,v 1.4 2006/09/26 05:19:49 dgp85 Exp $
+ * $Id: list.h,v 1.5 2007/02/19 23:34:32 dgp85 Exp $
*
* Doubly-linked linked list.
*
@@ -33,7 +33,7 @@
* xine_list_iterator_t ite = xine_list_front(list);
* while (ite) {
* _useful code here_
- * ite = xine_list_iterator_next(ite);
+ * ite = xine_list_next(list, ite);
* }
*
* The list elements are managed using memory chunks and a free list. The first