X-Git-Url: http://erislabs.net/gitweb/?a=blobdiff_plain;f=tests%2Ftest-linked_list.c;h=059b2eef6e91c9e6a1a0812cbd9aae1ed650c884;hb=192bd848d1106fc68d24e24e61534d6d9d49a335;hp=bf5ed4b0b9bc92d4f090c758690c3ccd3aa864ee;hpb=20af5d475a09dd19cb7be12d78f0599d7ba48e54;p=gnulib.git diff --git a/tests/test-linked_list.c b/tests/test-linked_list.c index bf5ed4b0b..059b2eef6 100644 --- a/tests/test-linked_list.c +++ b/tests/test-linked_list.c @@ -79,15 +79,15 @@ main (int argc, char *argv[]) contents[i] = RANDOM_OBJECT (); /* Create list1. */ - list1 = gl_list_create (GL_ARRAY_LIST, NULL, NULL, true, + list1 = gl_list_create (GL_ARRAY_LIST, NULL, NULL, NULL, true, initial_size, contents); /* Create list2. */ - list2 = gl_list_create_empty (GL_LINKED_LIST, NULL, NULL, true); + list2 = gl_list_create_empty (GL_LINKED_LIST, NULL, NULL, NULL, true); for (i = 0; i < initial_size; i++) gl_list_add_last (list2, contents[i]); /* Create list3. */ - list3 = gl_list_create (GL_LINKED_LIST, NULL, NULL, true, + list3 = gl_list_create (GL_LINKED_LIST, NULL, NULL, NULL, true, initial_size, contents); check_all (list1, list2, list3);