diff options
author | Diego 'Flameeyes' Pettenò <flameeyes@gmail.com> | 2007-02-19 23:34:32 +0000 |
---|---|---|
committer | Diego 'Flameeyes' Pettenò <flameeyes@gmail.com> | 2007-02-19 23:34:32 +0000 |
commit | 4016687297fc9869847749dddc1e7e04134140a9 (patch) | |
tree | e818759a3a6fea4c45edd233a49127358ed680c5 | |
parent | 8173333f753f6dbaeffc21fd9425825ab2b659fd (diff) | |
download | xine-lib-4016687297fc9869847749dddc1e7e04134140a9.tar.gz xine-lib-4016687297fc9869847749dddc1e7e04134140a9.tar.bz2 |
Fix the example to actually use an existing function.
CVS patchset: 8603
CVS date: 2007/02/19 23:34:32
-rw-r--r-- | src/xine-utils/list.h | 4 |
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 |