fixed bug in test routine

This commit is contained in:
Jeff Hill
1996-09-16 18:41:53 +00:00
parent 24e0989142
commit bece5d0b9a
2 changed files with 2 additions and 2 deletions

View File

@@ -626,7 +626,7 @@ main()
exit(4);
}
printf("ok\nellConcat() check... ");
ellConcat(list1, list2);
ellConcat(&list1, &list2);
if ((ellCount(&list1) != 20)||(ellCount(&list2) != 0)||
(list1.node.previous != (ELLNODE *)pmyNode))
{

View File

@@ -626,7 +626,7 @@ main()
exit(4);
}
printf("ok\nellConcat() check... ");
ellConcat(list1, list2);
ellConcat(&list1, &list2);
if ((ellCount(&list1) != 20)||(ellCount(&list2) != 0)||
(list1.node.previous != (ELLNODE *)pmyNode))
{