aboutsummaryrefslogtreecommitdiff
path: root/test
diff options
context:
space:
mode:
Diffstat (limited to 'test')
-rw-r--r--test/main.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/test/main.c b/test/main.c
index 77b78ac..e1c0c6c 100644
--- a/test/main.c
+++ b/test/main.c
@@ -56,7 +56,7 @@ int main(int argc, char** argv)
it = clist_iterator(&list1);
while(clist_iterator_has_next(&it)) {
- current = iterator_next(&it);
+ current = clist_iterator_next(&it);
printf("%s\n", (char *) current->data);
}