From 094ac465ca5c3fbd491dfa768bc6f19f45eab89b Mon Sep 17 00:00:00 2001 From: Frank DENIS Date: Sun, 21 Nov 2010 18:54:35 +0100 Subject: [PATCH] Fix prototype --- src/stack.h | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/stack.h b/src/stack.h index 386d35d..a4b31ce 100644 --- a/src/stack.h +++ b/src/stack.h @@ -47,7 +47,7 @@ _Bool pnt_stack_exists(PntStack * const pnt_stack, const void * const pnt); int init_pnt_stack_iterator(PntStackIterator * const pnt_stack_iterator, PntStack * const pnt_stack); -void pnt_stack_iterator_rewind(PntStackIterator * const pnt_stack_iterator); +int pnt_stack_iterator_rewind(PntStackIterator * const pnt_stack_iterator); void *pnt_stack_iterator_next(PntStackIterator * const pnt_stack_iterator); void *pnt_stack_cyterator_next(PntStackIterator * const pnt_stack_iterator);